From ea59f87c53d078866d3d530b47439a435e54107e Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 5 Mar 2023 00:22:48 +0200 Subject: [PATCH] #ifndef __SIG_ATOMIC_TYPE__ --- include/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/types.h b/include/types.h index 2247b82..09cbf61 100644 --- a/include/types.h +++ b/include/types.h @@ -103,6 +103,10 @@ typedef __builtin_va_list va_list; #endif // __cplusplus +#ifndef __SIG_ATOMIC_TYPE__ +#define __SIG_ATOMIC_TYPE__ int +#endif + typedef __INT8_TYPE__ int8_t; typedef __INT16_TYPE__ int16_t; typedef __INT32_TYPE__ int32_t;