diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-07 08:49:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-07 08:49:21 +0000 |
commit | 6a0d2fe1f44c1b101f0a8a97b06b5e847918cf81 (patch) | |
tree | eacb568ec18ccf958fd2c5066ea3434350c68409 /sys/compat/ibcs2/ibcs2_signal.h | |
parent | 5801cc811db8b51469a64c2c1c289dd02cb663c8 (diff) |
sync with 0504; mostly proto changes (some svr4 ioctl changes)
Diffstat (limited to 'sys/compat/ibcs2/ibcs2_signal.h')
-rw-r--r-- | sys/compat/ibcs2/ibcs2_signal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/ibcs2/ibcs2_signal.h b/sys/compat/ibcs2/ibcs2_signal.h index 2858688d79d..44cc6bf8a27 100644 --- a/sys/compat/ibcs2/ibcs2_signal.h +++ b/sys/compat/ibcs2/ibcs2_signal.h @@ -1,4 +1,4 @@ -/* $NetBSD: ibcs2_signal.h,v 1.7 1995/08/14 02:26:01 mycroft Exp $ */ +/* $NetBSD: ibcs2_signal.h,v 1.8 1996/05/03 17:05:28 christos Exp $ */ /* * Copyright (c) 1994, 1995 Scott Bartram @@ -79,10 +79,10 @@ #define IBCS2_SIGNO(x) ((x) & IBCS2_SIGNO_MASK) #define IBCS2_SIGCALL(x) ((x) & ~IBCS2_SIGNO_MASK) -#define IBCS2_SIG_DFL (void(*)())0 -#define IBCS2_SIG_ERR (void(*)())-1 -#define IBCS2_SIG_IGN (void(*)())1 -#define IBCS2_SIG_HOLD (void(*)())2 +#define IBCS2_SIG_DFL (void(*) __P((int))) 0 +#define IBCS2_SIG_ERR (void(*) __P((int))) -1 +#define IBCS2_SIG_IGN (void(*) __P((int))) 1 +#define IBCS2_SIG_HOLD (void(*) __P((int))) 2 #define IBCS2_SIG_SETMASK 0 #define IBCS2_SIG_BLOCK 1 |