Updates to rstl; rename some symbols; update CFLAGS

This commit is contained in:
2022-04-15 15:24:52 -04:00
parent 64057eede7
commit b8c0242ea7
21 changed files with 342 additions and 271 deletions

View File

@@ -7,12 +7,12 @@ extern "C" {
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef unsigned int u32;
typedef unsigned long long u64;
typedef char s8;
typedef short s16;
typedef long s32;
typedef int s32;
typedef long long s64;
typedef volatile u8 vu8;