1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 17:07:47 +00:00

AK: Add support for 64-bit size_t

This commit is contained in:
joshua stein 2020-01-30 17:03:58 -06:00 committed by Andreas Kling
parent ce56770875
commit dc93ed4368
4 changed files with 18 additions and 13 deletions

View file

@ -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;