mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 22:15:06 +00:00
Add size_t and ssize_t to kernel builds.
This commit is contained in:
parent
7580ac576f
commit
347e202f7f
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,9 @@ typedef signed char signed_byte;
|
|||
typedef signed short signed_word;
|
||||
typedef signed int signed_dword;
|
||||
typedef signed long long int signed_qword;
|
||||
|
||||
typedef dword size_t;
|
||||
typedef signed_dword ssize_t;
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue