Merge branch 'fix-USHRT_MAX' into 'master'

fix: USHRT_MAX is too large

See merge request redox-os/relibc!618
This commit is contained in:
Jeremy Soller
2025-02-18 22:17:50 +00:00
+1 -1
View File
@@ -26,7 +26,7 @@
#define UINT_MAX 0xffffffff
#define ULLONG_MAX 0xffffffffffffffff
#define ULONG_MAX 0xffffffffffffffff
#define USHRT_MAX 0xffffffffffffffff
#define USHRT_MAX 0xffff
#define WORD_BIT 32
#endif