diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-27 18:10:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-27 18:10:51 +0000 |
commit | 9c063f29fa9181a6310e1b3148d3a45f635c0da0 (patch) | |
tree | 4e51aedd737c19c9b7163b653f825f7f3d98a67e /src/syssignal.h | |
parent | defb80d7adcb5ea918dec614f0044fdc6967e4a2 (diff) | |
download | emacs-9c063f29fa9181a6310e1b3148d3a45f635c0da0.tar.gz |
[POSIX_SIGNALS] (signal): New definition.
Diffstat (limited to 'src/syssignal.h')
-rw-r--r-- | src/syssignal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syssignal.h b/src/syssignal.h index 374034df246..171cd24db65 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -54,6 +54,7 @@ extern sigset_t sys_sigmask (); #define sigsetmask(SIG) sys_sigsetmask (SIG) #define sighold(SIG) ONLY_USED_IN_BSD_4_1 #define sigrelse(SIG) ONLY_USED_IN_BSD_4_1 +#define signal(SIG,ACT) sys_signal(SIG,ACT) /* Whether this is what all systems want or not, this is what appears to be assumed in the source, for example data.c:arith_error. */ |