xv6-65oo2/kernel/types.h
2019-06-11 09:57:14 -04:00

11 lines
234 B
C

typedef unsigned int uint;
typedef unsigned short ushort;
typedef unsigned char uchar;
typedef unsigned char uint8;
typedef unsigned short uint16;
typedef unsigned int uint32;
typedef unsigned long uint64;
typedef uint64 pde_t;