Genesis-Plus-GX/source/types.h

14 lines
250 B
C
Raw Normal View History

2007-08-10 22:34:06 +02:00
#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_ */