Fix SIZE_MAX for i586

This commit is contained in:
Wildan M
2026-01-25 01:09:39 +07:00
parent 954c806d80
commit 632b3a9a4f
+4
View File
@@ -367,8 +367,12 @@ typedef __UINTMAX_TYPE__ uintmax_t;
#undef WINT_WIDTH
#define WINT_WIDTH __WINT_WIDTH__
#ifdef __ILP32__
#define SIZE_MAX UINT32_MAX
#else
#define SIZE_MAX UINT64_MAX
#endif
#endif
typedef long sig_atomic_t;