Genesis-Plus-GX/source/types.h
ekeeke31 217ca8de3f
2007-08-10 20:34:06 +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_ */