aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-01-24 05:27:32 +0000
committerKarl Heuer1995-01-24 05:27:32 +0000
commit667da7f557cf242e3d86cd415ceae37fbd7ab045 (patch)
treef69bd5bfde8ab015b24856175913d681fd383b6a
parenta36db1ea6b42da06ad0c9fa194f954cf9f623cc1 (diff)
downloademacs-667da7f557cf242e3d86cd415ceae37fbd7ab045.tar.gz
emacs-667da7f557cf242e3d86cd415ceae37fbd7ab045.zip
Don't use function prototypes.
-rw-r--r--src/syssignal.h12
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. */
61typedef RETSIGTYPE (*signal_handler_t) (int); 61typedef RETSIGTYPE (*signal_handler_t) (/*int*/);
62 62
63signal_handler_t sys_signal (int signal_number, signal_handler_t action); 63signal_handler_t sys_signal (/*int signal_number, signal_handler_t action*/);
64int sys_sigpause (sigset_t new_mask); 64int sys_sigpause (/*sigset_t new_mask*/);
65sigset_t sys_sigblock (sigset_t new_mask); 65sigset_t sys_sigblock (/*sigset_t new_mask*/);
66sigset_t sys_sigunblock (sigset_t new_mask); 66sigset_t sys_sigunblock (/*sigset_t new_mask*/);
67sigset_t sys_sigsetmask (sigset_t new_mask); 67sigset_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