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

This commit is contained in:
Michael Scire
2021-01-17 22:23:19 -08:00
committed by SciresM
parent 170034aed3
commit 5191f0e305
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);
}