1) use config.h if available
authorewt <devnull@localhost>
Fri, 17 Jan 1997 16:22:57 +0000 (16:22 +0000)
committerewt <devnull@localhost>
Fri, 17 Jan 1997 16:22:57 +0000 (16:22 +0000)
2) use if not ifdef
3) use <signal.h> instead of <sys/signal.h>

CVS patchset: 1317
CVS date: 1997/01/17 16:22:57

lib/install.c

index db3d90f..e8d5d80 100644 (file)
@@ -1,4 +1,6 @@
-#ifdef HAVE_ALLOCA_H
+#include "config.h"
+
+#if HAVE_ALLOCA_H
 # include <alloca.h>
 #endif
 
@@ -8,7 +10,7 @@
 #include <pwd.h>
 #include <stdlib.h>
 #include <string.h>
-#include <sys/signal.h>
+#include <signal.h>
 #include <sys/stat.h>          /* needed for mkdir(2) prototype! */
 #include <sys/types.h>
 #include <sys/wait.h>