summaryrefslogtreecommitdiffstats
path: root/usr.bin/make
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2004-04-05 06:16:48 +0000
committerdes <des@FreeBSD.org>2004-04-05 06:16:48 +0000
commitdfeeeaf38c52be58a1dd8d4d0ec53741bad8fe76 (patch)
tree8d27ccb9faaa4b79f6ea79413c90b9950c3d8417 /usr.bin/make
parentfee73bd41936825d79902edf7a1bdbbe866d9883 (diff)
downloadFreeBSD-src-dfeeeaf38c52be58a1dd8d4d0ec53741bad8fe76.zip
FreeBSD-src-dfeeeaf38c52be58a1dd8d4d0ec53741bad8fe76.tar.gz
Sort #includes, remove <sys/types.h> (made redundant by <sys/param.h>),
add <signal.h> (needed for sigaction()) Noticed by: Stefan Farfeleder <stefan@fafoe.narf.at>
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/main.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index 497eb77..399dbb9 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -60,8 +60,6 @@ __FBSDID("$FreeBSD$");
* the .MFLAGS target.
*/
-#include <sys/types.h>
-#include <sys/time.h>
#include <sys/param.h>
#include <sys/resource.h>
#include <sys/signal.h>
@@ -69,18 +67,22 @@ __FBSDID("$FreeBSD$");
#if defined(__i386__)
#include <sys/sysctl.h>
#endif
+#include <sys/time.h>
#ifndef MACHINE
#include <sys/utsname.h>
#endif
#include <sys/wait.h>
+
#include <err.h>
-#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
+#include <signal.h>
+#include <stdarg.h>
#include <stdio.h>
+#include <stdlib.h>
#include <sysexits.h>
-#include <stdarg.h>
#include <unistd.h>
+
#include "make.h"
#include "hash.h"
#include "dir.h"
OpenPOWER on IntegriCloud