mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-17 07:50:04 +00:00
LibC: Fix up a few copy-pasted INTMAX parameter names
This commit is contained in:
parent
d059bafd8a
commit
b7cf84f542
Notes:
sideshowbarker
2024-07-17 21:28:34 +09:00
Author: https://github.com/timschumi
Commit: b7cf84f542
Pull-request: https://github.com/SerenityOS/serenity/pull/11713
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