diff options
Diffstat (limited to 'typ.h')
| -rw-r--r-- | typ.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#ifndef TYP_H +#define TYP_H + +#include <stdint.h> +#include <stddef.h> + +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; +typedef size_t usize; + +#endif |
