From 3a0ad2fe749cb43189098b2411e94fd964d4fd6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 5 Apr 2004 06:16:48 +0000 Subject: [PATCH] Sort #includes, remove (made redundant by ), add (needed for sigaction()) Noticed by: Stefan Farfeleder --- usr.bin/make/main.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 497eb779e3a0..399dbb92fa2b 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -60,8 +60,6 @@ __FBSDID("$FreeBSD$"); * the .MFLAGS target. */ -#include -#include #include #include #include @@ -69,18 +67,22 @@ __FBSDID("$FreeBSD$"); #if defined(__i386__) #include #endif +#include #ifndef MACHINE #include #endif #include + #include -#include #include #include -#include -#include +#include #include +#include +#include +#include #include + #include "make.h" #include "hash.h" #include "dir.h"