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:
parent
d059bafd8a
commit
b7cf84f542
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue