summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1998-05-13 07:29:15 +0000
committercharnier <charnier@FreeBSD.org>1998-05-13 07:29:15 +0000
commitbf2e3ba402567370729f4ff57dbee5c4696f614e (patch)
tree3143932ae0b9740bd5a1a386e50b2b845d01399a
parentcad4243e61d8cc4b260542d34dac63f5752fe2d7 (diff)
downloadFreeBSD-src-bf2e3ba402567370729f4ff57dbee5c4696f614e.zip
FreeBSD-src-bf2e3ba402567370729f4ff57dbee5c4696f614e.tar.gz
Restore include of sys/types.h and sys/param.h.
-rw-r--r--bin/csh/alloc.c3
-rw-r--r--bin/csh/dol.c3
-rw-r--r--bin/csh/err.c3
-rw-r--r--bin/csh/exp.c3
-rw-r--r--bin/csh/hist.c3
-rw-r--r--bin/csh/lex.c3
-rw-r--r--bin/csh/misc.c3
-rw-r--r--bin/csh/parse.c3
-rw-r--r--bin/csh/set.c3
9 files changed, 18 insertions, 9 deletions
diff --git a/bin/csh/alloc.c b/bin/csh/alloc.c
index d6e37c9..142206b 100644
--- a/bin/csh/alloc.c
+++ b/bin/csh/alloc.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)alloc.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: alloc.c,v 1.7 1997/08/07 21:42:01 steve Exp $";
+ "$Id: alloc.c,v 1.8 1998/05/06 06:50:37 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#if __STDC__
diff --git a/bin/csh/dol.c b/bin/csh/dol.c
index a7570ca..21d6487 100644
--- a/bin/csh/dol.c
+++ b/bin/csh/dol.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)dol.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: dol.c,v 1.6 1997/08/07 21:42:05 steve Exp $";
+ "$Id: dol.c,v 1.7 1998/05/06 06:50:39 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
diff --git a/bin/csh/err.c b/bin/csh/err.c
index 4419f7c..f1770fb 100644
--- a/bin/csh/err.c
+++ b/bin/csh/err.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)err.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: err.c,v 1.6 1997/10/07 16:33:22 eivind Exp $";
+ "$Id: err.c,v 1.7 1998/05/06 06:50:41 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#include <unistd.h>
#if __STDC__
# include <stdarg.h>
diff --git a/bin/csh/exp.c b/bin/csh/exp.c
index 3ca1989..46ba511 100644
--- a/bin/csh/exp.c
+++ b/bin/csh/exp.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)exp.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: exp.c,v 1.5 1997/08/07 21:42:07 steve Exp $";
+ "$Id: exp.c,v 1.6 1998/05/06 06:50:44 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#if __STDC__
diff --git a/bin/csh/hist.c b/bin/csh/hist.c
index 7b39aa5..f76edec 100644
--- a/bin/csh/hist.c
+++ b/bin/csh/hist.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)hist.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: hist.c,v 1.6 1998/02/28 10:49:57 jraynard Exp $";
+ "$Id: hist.c,v 1.7 1998/05/06 06:50:50 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#if __STDC__
# include <stdarg.h>
#else
diff --git a/bin/csh/lex.c b/bin/csh/lex.c
index a228480..3ec0425 100644
--- a/bin/csh/lex.c
+++ b/bin/csh/lex.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)lex.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: lex.c,v 1.8 1997/08/08 00:54:04 steve Exp $";
+ "$Id: lex.c,v 1.9 1998/05/06 06:50:52 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <errno.h>
diff --git a/bin/csh/misc.c b/bin/csh/misc.c
index 313c86c..0584a3d 100644
--- a/bin/csh/misc.c
+++ b/bin/csh/misc.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: misc.c,v 1.6 1997/08/07 21:42:13 steve Exp $";
+ "$Id: misc.c,v 1.7 1998/05/06 06:50:53 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/param.h>
#include <unistd.h>
#if __STDC__
# include <stdarg.h>
diff --git a/bin/csh/parse.c b/bin/csh/parse.c
index 5295394..c4bf182 100644
--- a/bin/csh/parse.c
+++ b/bin/csh/parse.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: parse.c,v 1.6 1997/08/07 21:42:13 steve Exp $";
+ "$Id: parse.c,v 1.7 1998/05/06 06:50:56 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#include <string.h>
#if __STDC__
# include <stdarg.h>
diff --git a/bin/csh/set.c b/bin/csh/set.c
index 271a12c..c3745e6 100644
--- a/bin/csh/set.c
+++ b/bin/csh/set.c
@@ -36,10 +36,11 @@
static char sccsid[] = "@(#)set.c 8.1 (Berkeley) 5/31/93";
#else
static const char rcsid[] =
- "$Id: set.c,v 1.8 1998/02/28 10:50:02 jraynard Exp $";
+ "$Id: set.c,v 1.9 1998/05/06 06:51:04 charnier Exp $";
#endif
#endif /* not lint */
+#include <sys/types.h>
#if __STDC__
# include <stdarg.h>
#else
OpenPOWER on IntegriCloud