diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-19 07:41:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-19 07:41:02 +0000 |
commit | 6160d50edfe9ba91da8f71e98eba61be2fd23d9e (patch) | |
tree | 39431c15a5685379498a9c4be7360fa4033b9dc3 /usr.sbin/rbootd/defs.h | |
parent | b46267c544d68a6505df351838cbf4d2a534d4da (diff) |
If SIGUSR1 and SIGUSR2 are unavailable, don't invent something crazy
honouring systems before 4.3BSD.
Diffstat (limited to 'usr.sbin/rbootd/defs.h')
-rw-r--r-- | usr.sbin/rbootd/defs.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/rbootd/defs.h b/usr.sbin/rbootd/defs.h index eff3f0419a2..39270824bcf 100644 --- a/usr.sbin/rbootd/defs.h +++ b/usr.sbin/rbootd/defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: defs.h,v 1.9 2015/01/16 06:40:19 deraadt Exp $ */ +/* $OpenBSD: defs.h,v 1.10 2015/01/19 07:41:01 deraadt Exp $ */ /* $NetBSD: defs.h,v 1.5 1995/10/06 05:12:14 thorpej Exp $ */ /* @@ -52,16 +52,6 @@ */ /* - * SIGUSR1 and SIGUSR2 are defined in <signal.h> for 4.3BSD systems. - */ -#ifndef SIGUSR1 -#define SIGUSR1 SIGEMT -#endif -#ifndef SIGUSR2 -#define SIGUSR2 SIGFPE -#endif - -/* * These can be faster & more efficient than strcmp()/strncmp()... */ #define STREQN(s1,s2) ((*s1 == *s2) && (strcmp(s1,s2) == 0)) |