summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2004-10-10 03:06:43 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2004-10-10 03:06:43 +0000
commite9c804078467ee95cb3680c775751fea003eef9d (patch)
tree6719f4c06befe0d4b67a712135530f130df4d4cd /regress/lib
parentb5c83492f11e15a0e36c4501c137491684f4cc2f (diff)
use sig_atomic_t instead of int
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libc/ieeefp/except/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libc/ieeefp/except/except.c b/regress/lib/libc/ieeefp/except/except.c
index f95fa1fdbda..8bf0c81213c 100644
--- a/regress/lib/libc/ieeefp/except/except.c
+++ b/regress/lib/libc/ieeefp/except/except.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: except.c,v 1.7 2004/07/22 19:29:42 kettenis Exp $ */
+/* $OpenBSD: except.c,v 1.8 2004/10/10 03:06:42 mickey Exp $ */
#include <stdio.h>
#include <stdlib.h>
@@ -8,7 +8,7 @@
#include <float.h>
#include <err.h>
-volatile int signal_status;
+volatile sig_atomic_t signal_status;
volatile const double one = 1.0;
volatile const double zero = 0.0;