From 2b0e05cbc1e4d9beccd3a5867c8730880f6ecc10 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 23 Aug 2024 20:43:31 +0300 Subject: Start to rewriting code Since there's some UB in the master I decided to rewrite code from scratch again. I hope that attempt will be better :D --- include/types.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 include/types.h (limited to 'include/types.h') diff --git a/include/types.h b/include/types.h deleted file mode 100644 index 4bf1da9..0000000 --- a/include/types.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef __TYPES_H__ -#define __TYPES_H__ - -#include - - -typedef char s8; - -typedef uint8_t u8; -typedef uint16_t u16; -typedef uint32_t u32; -typedef uint64_t i64; - -typedef int8_t i8; -typedef int16_t i16; -typedef int32_t i32; -typedef uint64_t i64; - -#endif /* __TYPES_H__ */ -- cgit 1.4.1