summaryrefslogtreecommitdiff
path: root/source/verCases_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/verCases_common.c')
-rw-r--r--source/verCases_common.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/verCases_common.c b/source/verCases_common.c
index db8e588..2c5728e 100644
--- a/source/verCases_common.c
+++ b/source/verCases_common.c
@@ -1,12 +1,12 @@
/*============================================================================
-This C source file is part of TestFloat, Release 3b, a package of programs for
+This C source file is part of TestFloat, Release 3c, a package of programs for
testing the correctness of floating-point arithmetic complying with the IEEE
Standard for Floating-Point, by John R. Hauser.
-Copyright 2011, 2012, 2013, 2014 The Regents of the University of California.
-All rights reserved.
+Copyright 2011, 2012, 2013, 2014, 2017 The Regents of the University of
+California. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
@@ -39,6 +39,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
+#include <signal.h>
#include "platform.h"
#include "verCases.h"
@@ -52,7 +53,7 @@ bool verCases_checkNaNs = false;
uint_fast32_t verCases_maxErrorCount = 0;
bool verCases_errorStop = false;
-volatile bool verCases_stop = false;
+volatile sig_atomic_t verCases_stop = false;
bool verCases_anyErrors = false;