summaryrefslogtreecommitdiff
path: root/os/src/free.c
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-25 04:16:01 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-25 04:16:01 +0100
commit9a836f1dbf90f07c2fc4151166f7456879d675b0 (patch)
treebc7eec0850c1249c32465b41607a293c50eed44e /os/src/free.c
parentfcef19baed9cb5b040a3df0505e57710df20ee43 (diff)
Making the compiler a bitch by enabling warnings in full, fixing a few warnings, and making the board actually do slightly something.
Diffstat (limited to 'os/src/free.c')
-rw-r--r--os/src/free.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/os/src/free.c b/os/src/free.c
index f2d1fe5..d80aff2 100644
--- a/os/src/free.c
+++ b/os/src/free.c
@@ -1,4 +1,5 @@
#include <reent.h>
+#include <malloc.h>
void free(void * ptr) {
_free_r(_impure_ptr, ptr);