30 #ifndef __PC_GENERIC_H
31 #define __PC_GENERIC_H
33 typedef unsigned char uint8;
34 typedef unsigned short int uint16;
35 typedef unsigned int uint32;
36 typedef unsigned long long uint64;
37 typedef signed char int8;
38 typedef signed short int int16;
39 typedef signed int int32;
40 typedef signed long long int64;
42 #endif //__PC_GENERIC_H