]> git.eshelyaron.com Git - emacs.git/commitdiff
Include signal.h properly;
authorRichard M. Stallman <rms@gnu.org>
Mon, 2 Sep 1996 05:45:58 +0000 (05:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 2 Sep 1996 05:45:58 +0000 (05:45 +0000)
delete the duplicate includes for it.

lib-src/emacsserver.c

index 64b288cb496a5d3783f051e296c411f233e5cfa2..2cd617c5c9bed6145dc0007bb788819e88528aa2 100644 (file)
@@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA.  */
    up to the Emacs which then executes them.  */
 
 #define NO_SHORTNAMES
-#include <signal.h>
+#include <sys/signal.h>
 #include <../src/config.h>
 #undef read
 #undef write
@@ -52,7 +52,6 @@ main ()
 #include <sys/types.h>
 #include <sys/file.h>
 #include <sys/socket.h>
-#include <sys/signal.h>
 #include <sys/un.h>
 #include <stdio.h>
 #include <errno.h>
@@ -384,7 +383,6 @@ main (argc, argv)
 #else  /* This is the SYSV IPC section */
 
 #include <sys/types.h>
-#include <sys/signal.h>
 #include <sys/ipc.h>
 #include <sys/msg.h>
 #include <setjmp.h>