diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-14 21:46:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-14 21:46:32 +0000 |
commit | 3fce9befb1d4f65739adc427683f5a6357ee102f (patch) | |
tree | bda10871810ec2e3c47c06cfa6e07b88df5efe02 /sys/arch/alpha/include/signal.h | |
parent | 6ffc06fbc8f7e1d2c6134ab0d4563b6a189b983c (diff) |
convert _FOO_SOURCE -> __FOO_VISIBLE in machine. OK deraadt@
Diffstat (limited to 'sys/arch/alpha/include/signal.h')
-rw-r--r-- | sys/arch/alpha/include/signal.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/alpha/include/signal.h b/sys/arch/alpha/include/signal.h index 8df58e92099..b5c3acaa837 100644 --- a/sys/arch/alpha/include/signal.h +++ b/sys/arch/alpha/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.3 1996/10/30 22:39:29 niklas Exp $ */ +/* $OpenBSD: signal.h,v 1.4 2005/12/14 21:46:30 millert Exp $ */ /* $NetBSD: signal.h,v 1.2 1995/02/16 03:08:08 cgd Exp $ */ /* @@ -31,9 +31,11 @@ #ifndef _ALPHA_SIGNAL_H_ #define _ALPHA_SIGNAL_H_ +#include <sys/cdefs.h> + typedef long sig_atomic_t; -#ifndef _ANSI_SOURCE +#if __BSD_VISIBLE /* * Information pushed on stack when a signal is delivered. * This is used by the kernel to restore state following @@ -59,5 +61,5 @@ struct sigcontext { long sc_xxx[8]; /* XXX */ }; -#endif /* !_ANSI_SOURCE */ +#endif /* __BSD_VISIBLE */ #endif /* !_ALPHA_SIGNAL_H_*/ |