mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-09 20:11:50 +00:00
9 lines
161 B
C
9 lines
161 B
C
#ifndef _TYPES_H_
|
|
#define _TYPES_H_
|
|
|
|
typedef unsigned char u8;
|
|
typedef unsigned short u16;
|
|
typedef unsigned int u32;
|
|
typedef volatile unsigned int vu32;
|
|
|
|
#endif
|