summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>2000-10-10 01:50:26 +0000
committerwollman <wollman@FreeBSD.org>2000-10-10 01:50:26 +0000
commitc5c43ce91fc476c67d622b0ca48e8e25ca653ff6 (patch)
tree6a86f0286158b145d4f10cd2c3b154f913998b9d
parent62118ce6963d049326bd94cead782dfd91c67b48 (diff)
downloadFreeBSD-src-c5c43ce91fc476c67d622b0ca48e8e25ca653ff6.zip
FreeBSD-src-c5c43ce91fc476c67d622b0ca48e8e25ca653ff6.tar.gz
Don't depend on <sys/stat.h> bogusly including <sys/time.h> (and thereby
<time.h>).
-rw-r--r--bin/cp/utils.c1
-rw-r--r--bin/dd/dd.c1
-rw-r--r--games/rogue/machdep.c2
-rw-r--r--libexec/ftpd/ftpd.c5
-rw-r--r--libexec/getty/main.c1
-rw-r--r--libexec/rbootd/parseconf.c1
-rw-r--r--sbin/newfs_msdos/newfs_msdos.c4
-rw-r--r--sbin/restore/dirs.c1
-rw-r--r--sbin/restore/tape.c2
-rw-r--r--usr.bin/compress/compress.c1
-rw-r--r--usr.bin/ftp/ftp.c1
-rw-r--r--usr.sbin/tzsetup/tzsetup.c1
12 files changed, 18 insertions, 3 deletions
diff --git a/bin/cp/utils.c b/bin/cp/utils.c
index 86ab3ab..34b0225 100644
--- a/bin/cp/utils.c
+++ b/bin/cp/utils.c
@@ -41,6 +41,7 @@ static const char rcsid[] =
#include <sys/param.h>
#include <sys/stat.h>
+#include <sys/time.h>
#ifdef VM_AND_BUFFER_CACHE_SYNCHRONIZED
#include <sys/mman.h>
#endif
diff --git a/bin/dd/dd.c b/bin/dd/dd.c
index a7b8c66..a5bb032 100644
--- a/bin/dd/dd.c
+++ b/bin/dd/dd.c
@@ -54,6 +54,7 @@ static const char rcsid[] =
#include <sys/conf.h>
#include <sys/disklabel.h>
#include <sys/filio.h>
+#include <sys/time.h>
#include <ctype.h>
#include <err.h>
diff --git a/games/rogue/machdep.c b/games/rogue/machdep.c
index a66bdb3..39cfa81 100644
--- a/games/rogue/machdep.c
+++ b/games/rogue/machdep.c
@@ -99,7 +99,9 @@ static const char rcsid[] =
#include <sys/types.h>
#include <sys/file.h>
#include <sys/stat.h>
+
#include <pwd.h>
+#include <time.h>
#ifdef UNIX_BSD4_2
#include <sys/time.h>
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index f4a40aa..0035051 100644
--- a/libexec/ftpd/ftpd.c
+++ b/libexec/ftpd/ftpd.c
@@ -51,11 +51,12 @@ static const char rcsid[] =
* FTP server.
*/
#include <sys/param.h>
-#include <sys/stat.h>
#include <sys/ioctl.h>
+#include <sys/mman.h>
#include <sys/socket.h>
+#include <sys/stat.h>
+#include <sys/time.h>
#include <sys/wait.h>
-#include <sys/mman.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
diff --git a/libexec/getty/main.c b/libexec/getty/main.c
index 6cd1af8..68adab9 100644
--- a/libexec/getty/main.c
+++ b/libexec/getty/main.c
@@ -51,6 +51,7 @@ static const char rcsid[] =
#include <sys/resource.h>
#include <sys/ttydefaults.h>
#include <sys/utsname.h>
+
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/libexec/rbootd/parseconf.c b/libexec/rbootd/parseconf.c
index 21e4c0b..bd2f2e1 100644
--- a/libexec/rbootd/parseconf.c
+++ b/libexec/rbootd/parseconf.c
@@ -54,6 +54,7 @@ static const char rcsid[] =
#include <sys/param.h>
#include <sys/stat.h>
+#include <sys/time.h>
#include <ctype.h>
#include <dirent.h>
diff --git a/sbin/newfs_msdos/newfs_msdos.c b/sbin/newfs_msdos/newfs_msdos.c
index d6648fc..d0085f7 100644
--- a/sbin/newfs_msdos/newfs_msdos.c
+++ b/sbin/newfs_msdos/newfs_msdos.c
@@ -31,10 +31,11 @@ static const char rcsid[] =
#endif /* not lint */
#include <sys/param.h>
-#include <sys/stat.h>
#include <sys/diskslice.h>
#include <sys/disklabel.h>
#include <sys/mount.h>
+#include <sys/stat.h>
+#include <sys/time.h>
#include <ctype.h>
#include <err.h>
@@ -44,6 +45,7 @@ static const char rcsid[] =
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include <unistd.h>
#define MAXU16 0xffff /* maximum unsigned 16-bit quantity */
diff --git a/sbin/restore/dirs.c b/sbin/restore/dirs.c
index f30eacd..d7faa16 100644
--- a/sbin/restore/dirs.c
+++ b/sbin/restore/dirs.c
@@ -47,6 +47,7 @@ static const char rcsid[] =
#include <sys/param.h>
#include <sys/file.h>
#include <sys/stat.h>
+#include <sys/time.h>
#include <ufs/ufs/dinode.h>
#include <ufs/ufs/dir.h>
diff --git a/sbin/restore/tape.c b/sbin/restore/tape.c
index 602ce61..dc187a5 100644
--- a/sbin/restore/tape.c
+++ b/sbin/restore/tape.c
@@ -48,6 +48,7 @@ static const char rcsid[] =
#include <sys/file.h>
#include <sys/mtio.h>
#include <sys/stat.h>
+#include <sys/time.h>
#include <ufs/ufs/dinode.h>
#include <protocols/dumprestore.h>
@@ -57,6 +58,7 @@ static const char rcsid[] =
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include <unistd.h>
#include "restore.h"
diff --git a/usr.bin/compress/compress.c b/usr.bin/compress/compress.c
index bb8b1bf..4978196 100644
--- a/usr.bin/compress/compress.c
+++ b/usr.bin/compress/compress.c
@@ -47,6 +47,7 @@ static const char rcsid[] =
#include <sys/param.h>
#include <sys/stat.h>
+#include <sys/time.h>
#include <err.h>
#include <errno.h>
diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c
index abbad7f..5ef7723 100644
--- a/usr.bin/ftp/ftp.c
+++ b/usr.bin/ftp/ftp.c
@@ -47,6 +47,7 @@ __RCSID_SOURCE("$NetBSD: ftp.c,v 1.29.2.1 1997/11/18 01:01:04 mellon Exp $");
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
+#include <sys/time.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
diff --git a/usr.sbin/tzsetup/tzsetup.c b/usr.sbin/tzsetup/tzsetup.c
index a513870..68aaa0c 100644
--- a/usr.sbin/tzsetup/tzsetup.c
+++ b/usr.sbin/tzsetup/tzsetup.c
@@ -44,6 +44,7 @@ static const char rcsid[] =
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include <unistd.h>
#include <sys/fcntl.h>
OpenPOWER on IntegriCloud