summaryrefslogtreecommitdiff
path: root/libc/src/malloc.c
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-02-05 14:11:16 -0800
committerPixel <pixel@nobis-crew.org>2011-02-05 14:11:16 -0800
commitd257cf29744f732c4d9b1a741a26164940e87b90 (patch)
tree7d547847496ff6fadbe0d7a991a2b475a01464d7 /libc/src/malloc.c
parentab16fcf76e616dfa7cac2cb3dd909ba2a8eb2a9f (diff)
Adding a few more libc's string functions.
Diffstat (limited to 'libc/src/malloc.c')
-rw-r--r--libc/src/malloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/src/malloc.c b/libc/src/malloc.c
index fb6d954..2fae977 100644
--- a/libc/src/malloc.c
+++ b/libc/src/malloc.c
@@ -1,5 +1,6 @@
#include <stddef.h>
#include <stdint.h>
+#include "string.h"
#include "malloc.h"
void * sbrk(ptrdiff_t incr);