Runtime/math matches; better libc headers

Former-commit-id: bef7db1748
This commit is contained in:
2022-08-25 23:46:24 -04:00
parent 75f08901d8
commit 00c77e6195
116 changed files with 5434 additions and 973 deletions

View File

@@ -8,7 +8,7 @@
namespace rstl {
struct rmemory_allocator {
template < typename T >
static void allocate(T*& out, size_t sz) {
static void allocate(T*& out, s32 sz) {
out = reinterpret_cast< T* >(new u8[sz]);
}
template < typename T >