diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-03 17:25:01 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-03 17:25:01 +0000 |
commit | c1f0251976473d54cc4d46ef0dbfd8a4e2910904 (patch) | |
tree | c94c4365b1af58790980c5a34eef9775fbe70e1a /include/signal.h | |
parent | cb06773fd66aeb958d8723bdc65b3bc82ea4f1d1 (diff) |
XPG specifies bsd_signal(3) so make it an alias for signal(3); OK deraadt@
Diffstat (limited to 'include/signal.h')
-rw-r--r-- | include/signal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h index f168c77959a..fd50069fda9 100644 --- a/include/signal.h +++ b/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.7 2003/06/02 19:34:12 millert Exp $ */ +/* $OpenBSD: signal.h,v 1.8 2004/05/03 17:25:00 millert Exp $ */ /* $NetBSD: signal.h,v 1.8 1996/02/29 00:04:57 jtc Exp $ */ /*- @@ -49,6 +49,7 @@ extern __const char *__const sys_siglist[_NSIG]; __BEGIN_DECLS int raise(int); #ifndef _ANSI_SOURCE +void (*bsd_signal(int, void (*)(int)))(int); int kill(pid_t, int); int sigaction(int, const struct sigaction *, struct sigaction *); int sigaddset(sigset_t *, int); |