diff options
Diffstat (limited to 'types.h')
-rw-r--r-- | types.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,10 @@ typedef unsigned int uint; typedef unsigned short ushort; typedef unsigned char uchar; -typedef uint pde_t; + +typedef unsigned char uint8; +typedef unsigned short uint16; +typedef unsigned int uint32; +typedef unsigned long uint64; + +typedef uint64 pde_t; |