mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
Start work on a standard C library. I'm calling it... LibC.
This commit is contained in:
parent
85bcf2ed0f
commit
4cbf079a17
8 changed files with 311 additions and 0 deletions
14
LibC/types.h
Normal file
14
LibC/types.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
extern "C" {
|
||||
|
||||
typedef unsigned int dword;
|
||||
typedef unsigned short word;
|
||||
typedef unsigned char byte;
|
||||
|
||||
typedef dword uid_t;
|
||||
typedef dword gid_t;
|
||||
typedef dword pid_t;
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue