1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00
serenity/Userland/Libraries/LibC/bits
Daniel Bertalan 23adb7449f LibC: Fix stdint.h macros on x86_64
x86_64 is an LP64 platform, so its `uint64_t` type is defined to be
`unsigned long`, not `unsigned long long` like on i686. This means that
the `UL` literal suffix should be used instead of `ULL`.

Furthermore, `uintptr_t` is 64 bits wide on x86_64, so defining
`UINTPTR_MAX` to be `UINT32_MAX` is also not correct.
2021-11-28 09:38:57 -08:00
..
FILE.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
posix1_lim.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
pthread_forward.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
pthread_integration.h LibC+LibPthread: Add PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP 2021-07-05 23:30:15 +02:00
search.h LibC: Implement tfind and tsearch 2021-10-15 21:50:19 -07:00
sighow.h LibC: Move SIG_* definitions for sigprocmask into bits/sighow.h 2021-08-18 10:33:48 +02:00
stdint.h LibC: Fix stdint.h macros on x86_64 2021-11-28 09:38:57 -08:00