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

<sys/stat.h> for its prerequisite <sys/time.h>.

#include <sys/param.h> in the correct place instead of bogusly including
<sys/types.h>.
This commit is contained in:
bde 2002-02-25 03:36:06 +00:00
parent 5b9f1e3569
commit 9a245ba0a5

View File

@ -45,11 +45,11 @@ static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/sysctl.h>
#include <sys/resource.h>
#include <sys/param.h>
#include <ctype.h>
#include <err.h>