sized float types
[vg.git] / vg_stdint.h
1 #ifndef VG_STDINT_H
2 #define VG_STDINT_H
3
4 #include <stdint.h>
5
6 typedef uint8_t u8;
7 typedef uint16_t u16;
8 typedef uint32_t u32;
9 typedef uint64_t u64;
10 typedef int8_t i8;
11 typedef int16_t i16;
12 typedef int32_t i32;
13 typedef int64_t i64;
14 typedef float f32;
15 typedef double f64;
16
17 #endif /* VG_STDINT_H */