22 lines
426 B
C
22 lines
426 B
C
#ifndef LATYPE_H__
|
|
#define LATYPE_H__
|
|
|
|
typedef char i8;
|
|
typedef unsigned char u8;
|
|
typedef unsigned char uchar;
|
|
|
|
typedef short i16;
|
|
typedef unsigned short u16;
|
|
typedef unsigned short ushort;
|
|
|
|
typedef int i32;
|
|
typedef unsigned int u32;
|
|
typedef unsigned int uint;
|
|
|
|
typedef unsigned int size_t;
|
|
typedef unsigned int intptr_t;
|
|
|
|
typedef u32 pte_t;
|
|
typedef u32 *pagetable_t;
|
|
|
|
#endif |