ladybird/LibC/types.h

15 lines
181 B
C
Raw Normal View History

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