diff options
| author | WormHeamer | 2025-10-27 23:33:21 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-10-27 23:33:21 -0400 |
| commit | 40d164972423056e8302bd67db9494b6e4b076b3 (patch) | |
| tree | 25ff78ade2fcef01cee7339037a0ae745c416d2b /typ.h | |
| parent | dd62801133cddca25d94c9c59f8ca7d0748850c6 (diff) | |
fix a bunch of warnings
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 |
