diff options
| author | Richard M. Stallman | 1996-09-02 05:45:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-02 05:45:58 +0000 |
| commit | 8fb25e26807a4d653d7caf4617d020371b11208d (patch) | |
| tree | 62f7a5a2b979093aad441dedccdef3746e86562c /lib-src | |
| parent | d8888efa0fa0e65cd1b1978002551a24a2b6282e (diff) | |
| download | emacs-8fb25e26807a4d653d7caf4617d020371b11208d.tar.gz emacs-8fb25e26807a4d653d7caf4617d020371b11208d.zip | |
Include signal.h properly;
delete the duplicate includes for it.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/emacsserver.c | 4 |
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. */ | |||
| 26 | up to the Emacs which then executes them. */ | 26 | up to the Emacs which then executes them. */ |
| 27 | 27 | ||
| 28 | #define NO_SHORTNAMES | 28 | #define NO_SHORTNAMES |
| 29 | #include <signal.h> | 29 | #include <sys/signal.h> |
| 30 | #include <../src/config.h> | 30 | #include <../src/config.h> |
| 31 | #undef read | 31 | #undef read |
| 32 | #undef write | 32 | #undef write |
| @@ -52,7 +52,6 @@ main () | |||
| 52 | #include <sys/types.h> | 52 | #include <sys/types.h> |
| 53 | #include <sys/file.h> | 53 | #include <sys/file.h> |
| 54 | #include <sys/socket.h> | 54 | #include <sys/socket.h> |
| 55 | #include <sys/signal.h> | ||
| 56 | #include <sys/un.h> | 55 | #include <sys/un.h> |
| 57 | #include <stdio.h> | 56 | #include <stdio.h> |
| 58 | #include <errno.h> | 57 | #include <errno.h> |
| @@ -384,7 +383,6 @@ main (argc, argv) | |||
| 384 | #else /* This is the SYSV IPC section */ | 383 | #else /* This is the SYSV IPC section */ |
| 385 | 384 | ||
| 386 | #include <sys/types.h> | 385 | #include <sys/types.h> |
| 387 | #include <sys/signal.h> | ||
| 388 | #include <sys/ipc.h> | 386 | #include <sys/ipc.h> |
| 389 | #include <sys/msg.h> | 387 | #include <sys/msg.h> |
| 390 | #include <setjmp.h> | 388 | #include <setjmp.h> |