gb6/src/types.h

10 lines
156 B
C

#ifndef _TYPES_H
#define _TYPES_H
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef unsigned long long u64;
#endif