1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00
serenity/LibC/types.h

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