diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 20:43:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 20:43:23 +0000 |
commit | 58efe68dd1ca355b24dce2b8cb5aa51d152dbee9 (patch) | |
tree | 8961699bf48c8b82baf40d3564dab2301d7610b0 /sys/arch/sparc64/include | |
parent | 63ef7f8e5d3f43701fae752fc152c7f1756f4729 (diff) |
what the heck, be solaris compatible for sig_atomic_t
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r-- | sys/arch/sparc64/include/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/include/signal.h b/sys/arch/sparc64/include/signal.h index 4e95ba63bff..f273daf3029 100644 --- a/sys/arch/sparc64/include/signal.h +++ b/sys/arch/sparc64/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.2 2001/11/17 20:19:49 deraadt Exp $ */ +/* $OpenBSD: signal.h,v 1.3 2001/11/17 20:43:22 deraadt Exp $ */ /* $NetBSD: signal.h,v 1.10 2001/05/09 19:50:49 kleink Exp $ */ /* @@ -49,7 +49,7 @@ #define _SPARC_SIGNAL_H_ #ifndef _LOCORE -typedef long sig_atomic_t; +typedef int sig_atomic_t; #endif #if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \ |