From 0aa0394ca2f6aa58cb23effc4bb9bd4bdc68ee21 Mon Sep 17 00:00:00 2001 From: raiden00pl Date: Sun, 2 Oct 2022 12:36:27 +0200 Subject: [PATCH] include/stdint.h: add sig_atomic_t limits --- include/stdint.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/stdint.h b/include/stdint.h index ad07aad1475..42cd716d21b 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -123,6 +123,11 @@ #define INTPTR_MAX PTR_MAX #define UINTPTR_MAX UPTR_MAX +/* Limits of sig_atomic_t type */ + +#define SIG_ATOMIC_MIN INT32_MIN +#define SIG_ATOMIC_MAX INT32_MAX + /* Limits of greatest-width integer types */ #ifdef __INT64_DEFINED