1 2 3 4 5 6 7 8 9 10 11 12 13
#define NULL 0 typedef unsigned char uint8; typedef unsigned short int uint16; typedef unsigned long uint32; typedef unsigned long long uint64; #if defined(__x86_64) typedef uint64 memAddr; #else typedef uint32 memAddr; #endif