Updates to rstl; rename some symbols; update CFLAGS

Former-commit-id: b8c0242ea7
This commit is contained in:
2022-04-15 15:24:52 -04:00
parent 2365e4f31e
commit 936f63b05d
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;