1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibC: Add some integer functionality needed for NASM.

This commit is contained in:
Andreas Kling 2019-02-05 13:38:32 +01:00
parent caff611ca3
commit ddb13ae6d8
4 changed files with 29 additions and 0 deletions

View file

@ -4,10 +4,12 @@
__BEGIN_DECLS
typedef unsigned long long int uint64_t;
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
typedef unsigned char uint8_t;
typedef signed long long int int64_t;
typedef signed int int32_t;
typedef signed short int16_t;
typedef signed char int8_t;