mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:58:11 +00:00
14 lines
181 B
C
14 lines
181 B
C
#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;
|
|
|
|
}
|
|
|