summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 22:27:57 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 22:27:57 +0100
commit3209738e135f8ae5755652150ffeb81cb7d91e75 (patch)
tree00aa5cbe7b3ba0a866c6ce409829fa2e00d7de52 /os
parent250095c7bc783f415b3958b1099216e8953600e7 (diff)
Fixing malloc's template, and fixing a bit more the verbose/quiet mode.
Diffstat (limited to 'os')
-rw-r--r--os/src/malloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/os/src/malloc.c b/os/src/malloc.c
index 7d5f965..539d976 100644
--- a/os/src/malloc.c
+++ b/os/src/malloc.c
@@ -1,4 +1,5 @@
#include <reent.h>
+#include <malloc.h>
void * malloc(size_t size) {
return _malloc_r(_impure_ptr, size);