blob: 62c254d8cf2a1386efff327ab7db9d5bcdcf951f [file] [log] [blame]
Stefan Reinauerd6fac382015-05-05 13:35:18 -07001#ifndef _STDTYPES_H
2#define _STDTYPES_H
3
4#include <stdint.h>
5
6typedef uint8_t u8;
7typedef uint16_t u16;
8typedef uint32_t u32;
9typedef uint64_t u64;
10typedef int8_t s8;
11typedef int16_t s16;
12typedef int32_t s32;
13
14typedef uint8_t bool;
15#define true 1
16#define false 0
17
18#endif /* _STDTYPES_H */