Made numeric types more stable
Run tests / Run tests (push) Successful in 44s

This commit is contained in:
2026-05-05 15:10:08 +03:00
parent 7b8bac2b55
commit 0886535722
+10 -8
View File
@@ -1,15 +1,17 @@
#ifndef EV_HEADERS_INTERNAL_H #ifndef EV_HEADERS_INTERNAL_H
#define EV_HEADERS_INTERNAL_H #define EV_HEADERS_INTERNAL_H
typedef signed char i8; #include <stdint.h>
typedef short int i16;
typedef int i32;
typedef long long int i64;
typedef unsigned char u8; typedef int8_t i8;
typedef unsigned short int u16; typedef int16_t i16;
typedef unsigned int u32; typedef int32_t i32;
typedef unsigned long long int u64; typedef int64_t i64;
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef float f32; typedef float f32;
typedef double f64; typedef double f64;