summaryrefslogtreecommitdiff
path: root/libpsx/src/setup.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-10-24 02:15:50 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-10-24 02:15:50 +0200
commit15e2ff6bb683138878c376a84882b1a6da63cb94 (patch)
tree5bac4719b3bf9a5931414a5bed8ead79fda70fe0 /libpsx/src/setup.c
parent6989798d87d3e5eded4fbc2e1d19a5b40a4e8051 (diff)
Lazy-initialize heap
Diffstat (limited to 'libpsx/src/setup.c')
-rw-r--r--libpsx/src/setup.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libpsx/src/setup.c b/libpsx/src/setup.c
index d77f062..1a28685 100644
--- a/libpsx/src/setup.c
+++ b/libpsx/src/setup.c
@@ -1,6 +1,5 @@
#include <psx.h>
#include <stdio.h>
-#include "memory.h"
extern int __bss_start[];
extern int __bss_end[];
@@ -38,11 +37,6 @@ void psxsdk_setup()
*((unsigned char*)x) = 0;
dprintf("BSS space cleared.\n");
-
-// Setup memory allocation functions
- malloc_setup();
-
- dprintf("Finished setting up memory allocation functions.\n");
// Call static constructors
call_ctors();