summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-02 05:45:58 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-02 05:45:58 +0000
commit3d49bd5d3c1e79c85df64150d54b9cfd26dc2818 (patch)
tree96945aeb1710e228c2f56c87e55f29c589d944d2 /lib-src
parentc17cfc38975accf1f313ea8416ebdea3f216af56 (diff)
downloademacs-3d49bd5d3c1e79c85df64150d54b9cfd26dc2818.tar.gz
Include signal.h properly;
delete the duplicate includes for it.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/emacsserver.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib-src/emacsserver.c b/lib-src/emacsserver.c
index 64b288cb496..2cd617c5c9b 100644
--- a/lib-src/emacsserver.c
+++ b/lib-src/emacsserver.c
@@ -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>