blob: 9b322a968e6e4ec4e3c71ea2a7183afdfc1cf4b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _GLOBAL
#define _GLOBAL
#include <stdint.h>
typedef uint8_t bool;
#define false 0
#define true 1
typedef int32_t i32;
typedef uint32_t u32;
#endif /* _GLOBAL */
|