#include <sys/time.h> instead of depending on namespace pollution in

<sys/stat.h> for the declaration of struct timeval (sys/stat.h> only
needs timespecs even when its POSIX support is not turned on, so it
shouldn't declare timevals).

Fixed some #include messes.
This commit is contained in:
Bruce Evans 2002-02-25 04:47:39 +00:00
parent 0c6ec4aca0
commit 8b179749d8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91220

View File

@ -33,15 +33,21 @@ __FBSDID("$FreeBSD$");
/* System Headers */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <ctype.h>
#include <dirent.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#ifndef __FreeBSD__
#include <getopt.h>
#endif
#ifdef __FreeBSD__
#include <locale.h>
#endif
#include <pwd.h>
#include <signal.h>
#include <stddef.h>
@ -51,11 +57,6 @@ __FBSDID("$FreeBSD$");
#include <time.h>
#include <unistd.h>
#include <utmp.h>
#ifndef __FreeBSD__
#include <getopt.h>
#else
#include <locale.h>
#endif
#if (MAXLOGNAME-1) > UT_NAMESIZE
#define LOGNAMESIZE UT_NAMESIZE