blob: 0fa5b5a9287792bb5d581fb30e3486384f5e41f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef NAVIT_TYPES_H
#define NAVIT_TYPES_H
#include <stdint.h>
typedef int8_t s8;
typedef uint8_t u8;
typedef int16_t s16;
typedef uint16_t u16;
typedef int32_t s32;
typedef uint32_t u32;
#endif
|