summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include/signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/alpha/include/signal.h')
-rw-r--r--sys/arch/alpha/include/signal.h8
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_*/