stdint.h: typedefs for signed integers (int8_t, i8, e.t.c.)

This commit is contained in:
Imbus 2025-09-05 23:31:39 +02:00
parent b9b1de5ff1
commit 851424f3cb

View file

@ -6,12 +6,22 @@ typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long u64;
typedef char i8;
typedef short i16;
typedef int i32;
typedef long i64;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long uint64_t;
typedef uint64_t size_t;
typedef char int8_t;
typedef short int16_t;
typedef int int32_t;
typedef long int64_t;
typedef uint64_t size_t;
typedef uint64_t uintptr_t;
#define INT8_MIN (-128)