diff options
author | Roland McGrath <roland@gnu.org> | 1994-02-11 02:52:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-02-11 02:52:17 +0000 |
commit | a86928f70cd8120f99856c5f1b0051dac621c5b5 (patch) | |
tree | ff2e871ed288a36b7d8d927162a70b12f980956e /src/process.c | |
parent | d21dd7109c5d3ecb7b7ab00b02e27635726b602e (diff) | |
download | emacs-a86928f70cd8120f99856c5f1b0051dac621c5b5.tar.gz |
(sys_siglist): Protect decl with #ifndef SYS_SIGLIST_DECLARED.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index 99412ccc088..6512da71df3 100644 --- a/src/process.c +++ b/src/process.c @@ -131,6 +131,7 @@ extern char *strerror (); extern char *sys_errlist[]; #endif +#ifndef SYS_SIGLIST_DECLARED #ifndef VMS #ifndef BSD4_1 #ifndef LINUX @@ -168,6 +169,7 @@ char *sys_siglist[] = }; #endif #endif /* VMS */ +#endif /* ! SYS_SIGLIST_DECLARED */ /* t means use pty, nil means use a pipe, maybe other values to come. */ |