This commit is contained in:
2025-04-15 17:45:50 -04:00
parent 8e41b63cc1
commit 32b02a1691
6 changed files with 77 additions and 0 deletions

BIN
build/util.a Normal file

Binary file not shown.

16
build/util.h Executable file
View File

@@ -0,0 +1,16 @@
#ifndef UTIL_H_
#define UTIL_H_
/*
* Aliases for concise data types
*/
typedef char i8;
typedef unsigned int u16;
typedef int i16;
typedef unsigned long u32;
typedef long i32;
typedef unsigned long long u64;
typedef long long i64;
#endif

BIN
build/util.o Normal file

Binary file not shown.