From 7ef8a7379f7f7d09e71ccae2a0b688c3cd80423f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 8 Feb 2019 18:42:39 -0500 Subject: merge sources into single tree --- src/stdint/SIG_ATOMIC_MIN.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/stdint/SIG_ATOMIC_MIN.c (limited to 'src/stdint/SIG_ATOMIC_MIN.c') diff --git a/src/stdint/SIG_ATOMIC_MIN.c b/src/stdint/SIG_ATOMIC_MIN.c new file mode 100644 index 00000000..f4d27e62 --- /dev/null +++ b/src/stdint/SIG_ATOMIC_MIN.c @@ -0,0 +1,9 @@ +#include +#define SIG_ATOMIC_MIN (-127) + +/*If sig_atomic_t (see 7.14) is defined as a signed integer type, the value of SIG_ATOMIC_MIN shall be no greater than −127 and the value of SIG_ATOMIC_MAX shall be no less than 127; otherwise, sig_atomic_t is defined as an unsigned integer type, and the value of SIG_ATOMIC_MIN shall be 0 and the value of SIG_ATOMIC_MAX shall be no less than 255.*/ + + +/* +STDC(199901) +*/ -- cgit v1.2.1