summaryrefslogtreecommitdiff
path: root/include/malloc.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2017-10-12 15:59:43 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2017-10-12 15:59:43 -0400
commit8d31a46c6fbc2dedd39ec9e9687f372ac102303d (patch)
tree361e868f823114ceccfb49f83fc1aacef8d636a7 /include/malloc.h
parent8914645231c9301579ed39bdd9200ad50e5296d0 (diff)
sub_8121478
Diffstat (limited to 'include/malloc.h')
-rw-r--r--include/malloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/malloc.h b/include/malloc.h
index 4568e244a..f3a731797 100644
--- a/include/malloc.h
+++ b/include/malloc.h
@@ -2,7 +2,7 @@
#define GUARD_MALLOC_H
#define malloc Alloc
-#define calloc AllocZeroed
+#define calloc(ct, sz) AllocZeroed((ct) * (sz))
#define free Free
extern u8 gHeap[];