1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:28:12 +00:00

LibC: Fix up a few copy-pasted INTMAX parameter names

This commit is contained in:
Tim Schumacher 2022-01-07 17:33:32 +01:00 committed by Linus Groh
parent d059bafd8a
commit b7cf84f542

View file

@ -65,14 +65,14 @@ typedef __INT_LEAST64_TYPE__ int_least64_t;
# define INT64_C(x) __int_c(x, __INT64_C_SUFFIX__)
# define UINT64_C(x) __int_c(x, __UINT64_C_SUFFIX__)
# define INTMAX_C(c) __int_c(c, __INTMAX_C_SUFFIX__)
# define UINTMAX_C(c) __int_c(x, __UINTMAX_C_SUFFIX__)
# define INTMAX_C(x) __int_c(x, __INTMAX_C_SUFFIX__)
# define UINTMAX_C(x) __int_c(x, __UINTMAX_C_SUFFIX__)
#else
# define INT64_C(x) __INT64_C(x)
# define UINT64_C(x) __UINT64_C(x)
# define INTMAX_C(c) __INTMAX_C(x)
# define UINTMAX_C(c) __UINTMAX_C(x)
# define INTMAX_C(x) __INTMAX_C(x)
# define UINTMAX_C(x) __UINTMAX_C(x)
#endif
typedef __UINTPTR_TYPE__ uintptr_t;