feat: more fun messages in panic; types are not _BitInt() anymore (C's asm refused to eat that)

This commit is contained in:
Karina
2025-12-23 16:30:28 +04:00
parent 4b101ceda8
commit f3c1c94a61
4 changed files with 24 additions and 11 deletions
+8 -8
View File
@@ -1,15 +1,15 @@
#ifndef TYPES_H
#define TYPES_H
typedef unsigned _BitInt(8) u8;
typedef unsigned _BitInt(16) u16;
typedef unsigned _BitInt(32) u32;
typedef unsigned _BitInt(64) u64;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long long u64;
typedef signed _BitInt(8) i8;
typedef signed _BitInt(16) i16;
typedef signed _BitInt(32) i32;
typedef signed _BitInt(64) i64;
typedef signed char i8;
typedef signed short i16;
typedef signed int i32;
typedef signed long long i64;
typedef u64 usize;
typedef u64 uintptr_t;