diff options
| author | Karl Heuer | 1995-01-24 05:27:32 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-24 05:27:32 +0000 |
| commit | 667da7f557cf242e3d86cd415ceae37fbd7ab045 (patch) | |
| tree | f69bd5bfde8ab015b24856175913d681fd383b6a /src | |
| parent | a36db1ea6b42da06ad0c9fa194f954cf9f623cc1 (diff) | |
| download | emacs-667da7f557cf242e3d86cd415ceae37fbd7ab045.tar.gz emacs-667da7f557cf242e3d86cd415ceae37fbd7ab045.zip | |
Don't use function prototypes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syssignal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/syssignal.h b/src/syssignal.h index a7e3cdebe43..433b0b9d2f4 100644 --- a/src/syssignal.h +++ b/src/syssignal.h | |||
| @@ -58,13 +58,13 @@ extern sigset_t sys_sigmask (); | |||
| 58 | 58 | ||
| 59 | /* Whether this is what all systems want or not, this is what | 59 | /* Whether this is what all systems want or not, this is what |
| 60 | appears to be assumed in the source, for example data.c:arith_error. */ | 60 | appears to be assumed in the source, for example data.c:arith_error. */ |
| 61 | typedef RETSIGTYPE (*signal_handler_t) (int); | 61 | typedef RETSIGTYPE (*signal_handler_t) (/*int*/); |
| 62 | 62 | ||
| 63 | signal_handler_t sys_signal (int signal_number, signal_handler_t action); | 63 | signal_handler_t sys_signal (/*int signal_number, signal_handler_t action*/); |
| 64 | int sys_sigpause (sigset_t new_mask); | 64 | int sys_sigpause (/*sigset_t new_mask*/); |
| 65 | sigset_t sys_sigblock (sigset_t new_mask); | 65 | sigset_t sys_sigblock (/*sigset_t new_mask*/); |
| 66 | sigset_t sys_sigunblock (sigset_t new_mask); | 66 | sigset_t sys_sigunblock (/*sigset_t new_mask*/); |
| 67 | sigset_t sys_sigsetmask (sigset_t new_mask); | 67 | sigset_t sys_sigsetmask (/*sigset_t new_mask*/); |
| 68 | 68 | ||
| 69 | #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG) | 69 | #define sys_sigdel(MASK,SIG) sigdelset (&MASK,SIG) |
| 70 | 70 | ||