From eee119de6a2bd0487e91daf69e7962351e2a3c9c Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Mon, 24 Jan 2011 18:23:01 +0100 Subject: Dummy software compiles; fixed a few linking issues. Also, most of the kernel syscalls are missing. --- os/src/malloc.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 os/src/malloc.c (limited to 'os/src/malloc.c') diff --git a/os/src/malloc.c b/os/src/malloc.c new file mode 100644 index 0000000..7d5f965 --- /dev/null +++ b/os/src/malloc.c @@ -0,0 +1,5 @@ +#include + +void * malloc(size_t size) { + return _malloc_r(_impure_ptr, size); +} -- cgit v1.2.3