mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 15:07:44 +00:00
AK: Add support for 64-bit size_t
This commit is contained in:
parent
ce56770875
commit
dc93ed4368
4 changed files with 18 additions and 13 deletions
|
@ -82,6 +82,11 @@ typedef int8_t i8;
|
|||
typedef int16_t i16;
|
||||
typedef int32_t i32;
|
||||
typedef int64_t i64;
|
||||
|
||||
#ifdef __ptrdiff_t
|
||||
typedef __PTRDIFF_TYPE__ __ptrdiff_t;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
constexpr unsigned KB = 1024;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue