Genesis-Plus-GX/ genplus-gx/source/types.h
ekeeke31 622d308d3b
2007-08-09 20:13:54 +00:00

14 lines
250 B
C

#ifndef _TYPES_H_
#define _TYPES_H_
typedef unsigned char uint8;
typedef unsigned short int uint16;
typedef unsigned long int uint32;
typedef signed char int8;
typedef signed short int int16;
typedef signed long int int32;
#endif /* _TYPES_H_ */