diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2022-07-23 14:57:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-23 14:57:47 -0400 |
| commit | 260be2c36b2c0edd6459ed75173202bf722a89cb (patch) | |
| tree | 06b14ce56d6edfe8cc8056fe8fea5b6edf5aad9e /include/libc | |
| parent | eff952b9446b11123f51de438959771b999ec2bd (diff) | |
Hex Cleanup (#960)
* Hex Cleanup
* PR Suggestions
Diffstat (limited to 'include/libc')
| -rw-r--r-- | include/libc/stdint.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/libc/stdint.h b/include/libc/stdint.h index 1696615a7..20288d40d 100644 --- a/include/libc/stdint.h +++ b/include/libc/stdint.h @@ -11,19 +11,19 @@ typedef u32 uintptr_t; #define INT32_MIN (-0x80000000) #define INT64_MIN (-0x8000000000000000) -#define INT8_MAX 0x7f -#define INT16_MAX 0x7fff -#define INT32_MAX 0x7fffffff -#define INT64_MAX 0x7fffffffffffffff +#define INT8_MAX 0x7F +#define INT16_MAX 0x7FFF +#define INT32_MAX 0x7FFFFFFF +#define INT64_MAX 0x7FFFFFFFFFFFFFFF -#define UINT8_MAX 0xff -#define UINT16_MAX 0xffff -#define UINT32_MAX 0xffffffff -#define UINT64_MAX 0xffffffffffffffff +#define UINT8_MAX 0xFF +#define UINT16_MAX 0xFFFF +#define UINT32_MAX 0xFFFFFFFF +#define UINT64_MAX 0xFFFFFFFFFFFFFFFF #define INTPTR_MIN (-0x80000000) -#define INTPTR_MAX 0x7fffffff -#define UINTPTR_MAX 0xffffffff +#define INTPTR_MAX 0x7FFFFFFF +#define UINTPTR_MAX 0xFFFFFFFF #endif /* STDINT_H */ |
