From 85bfc724dd2bdaa2259512c1b8ab21f7dfeca8f1 Mon Sep 17 00:00:00 2001 From: A404M Date: Sat, 26 Apr 2025 01:21:12 +0330 Subject: clean up --- src/utils/type.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'src/utils/type.h') diff --git a/src/utils/type.h b/src/utils/type.h index 4c61bc3..3a0e59e 100644 --- a/src/utils/type.h +++ b/src/utils/type.h @@ -1,20 +1,18 @@ #pragma once -#include - #ifdef __FLT16_MIN__ #define FLOAT_16_SUPPORT #endif -typedef int8_t i8; -typedef int16_t i16; -typedef int32_t i32; -typedef int64_t i64; +typedef char i8; +typedef short i16; +typedef int i32; +typedef long long i64; -typedef uint8_t u8; -typedef uint16_t u16; -typedef uint32_t u32; -typedef uint64_t u64; +typedef unsigned char u8; +typedef unsigned short u16; +typedef unsigned int u32; +typedef unsigned long long u64; #ifdef FLOAT_16_SUPPORT typedef _Float16 f16; -- cgit v1.2.3