ro: reduce memory usage by excising (unused) std::malloc

This commit is contained in:
Michael Scire
2021-01-17 22:23:19 -08:00
parent fb6a4e28a5
commit a6e452ed9e
6 changed files with 47 additions and 7 deletions

View File

@@ -26,4 +26,7 @@ namespace ams {
void InitializeForBoot();
void SetInitialRebootPayload(const void *src, size_t src_size);
void *Malloc(size_t size);
void Free(void *ptr);
}