diff options
Diffstat (limited to 'src/stdint/SIG_ATOMIC_MAX.h')
-rw-r--r-- | src/stdint/SIG_ATOMIC_MAX.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stdint/SIG_ATOMIC_MAX.h b/src/stdint/SIG_ATOMIC_MAX.h new file mode 100644 index 00000000..da8db676 --- /dev/null +++ b/src/stdint/SIG_ATOMIC_MAX.h @@ -0,0 +1,9 @@ +#include <stdint.h> +#define SIG_ATOMIC_MAX (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) +*/ |