#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:
Bruce Evans 2002-02-25 03:36:06 +00:00
parent e395985f1d
commit ce68584226
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91217

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>