clear clang errors

This commit is contained in:
Kasper Sauramo
2025-03-27 12:15:26 +02:00
parent a3d4d46226
commit c3f240624c
12 changed files with 34 additions and 50 deletions

View File

@@ -18,6 +18,9 @@ typedef double f64;
typedef uintptr_t uptr;
typedef ptrdiff_t ptrdiff;
typedef uint8_t bool8;
typedef uint32_t bool32;
typedef enum { HILOAD_FAIL = 0, HILOAD_OK } HiloadResult;
#define HILOADRES(res) ((res) == HILOAD_OK)