1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +00:00

LibC: Fix max value of short

This commit is contained in:
sarsaparilla89 2023-07-08 18:07:53 +02:00 committed by Tim Flynn
parent c09bcc2f16
commit 9ac4470b9b

View file

@ -24,7 +24,7 @@
#define SCHAR_MAX 127 #define SCHAR_MAX 127
#define UCHAR_MAX 255 #define UCHAR_MAX 255
#define SHRT_MAX 32768 #define SHRT_MAX 32767
#define SHRT_MIN (-SHRT_MAX - 1) #define SHRT_MIN (-SHRT_MAX - 1)
#define USHRT_MAX 65535 #define USHRT_MAX 65535