summaryrefslogtreecommitdiff
path: root/kernel/types.h
blob: ee731649e26036528f55d39c0a7e8ae53f6ceb41 (plain)
1
2
3
4
5
6
7
8
9
10
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;