summaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
authorCameron Hall <camthesaxman@users.noreply.github.com>2017-09-09 12:06:15 -0500
committerGitHub <noreply@github.com>2017-09-09 12:06:15 -0500
commiteb280768a48eba5332468b463aab962e1eafb18e (patch)
tree8cc165f2f24f7b09823ab43a91a281ef22b7f6a3 /src/malloc.c
parent675bdb52508deb085813588203baa7cd9c9de24c (diff)
parent10a525d5a072892d2e94c2cf31d5abc9197cae20 (diff)
Merge pull request #23 from DizzyEggg/clean_up2
Splitting, labelling, decomp
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/malloc.c b/src/malloc.c
index 948303c6f..3901c5a35 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -1,7 +1,5 @@
#include "global.h"
-EWRAM_DATA u8 gHeap[0x1C000] = {0};
-
static void *sHeapStart;
static u32 sHeapSize;