diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-11 20:53:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-11 20:53:24 +0000 |
commit | 97889fe59edb152e2c04893ee1fe4e395a0adefd (patch) | |
tree | b3769b558650b7e390b9c42b6bf22565f86be064 /sys/arch/alpha | |
parent | 0caa4c315c8437a04f1cd5e047d0340586e0b619 (diff) |
change sig_atomic_t to int (was long). spotted by Alexander_Bluhm@genua.de
this is a tiny ABI change, but it is better for a handfull of reasons
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/include/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/signal.h b/sys/arch/alpha/include/signal.h index 6c8314d0ae8..e433a488152 100644 --- a/sys/arch/alpha/include/signal.h +++ b/sys/arch/alpha/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.5 2006/01/08 14:20:17 millert Exp $ */ +/* $OpenBSD: signal.h,v 1.6 2006/12/11 20:53:23 deraadt Exp $ */ /* $NetBSD: signal.h,v 1.2 1995/02/16 03:08:08 cgd Exp $ */ /* @@ -33,7 +33,7 @@ #include <sys/cdefs.h> -typedef long sig_atomic_t; +typedef int sig_atomic_t; #if __BSD_VISIBLE || __XPG_VISIBLE >= 420 /* |