diff options
author | Pixel <pixel@nobis-crew.org> | 2011-02-05 14:11:16 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2011-02-05 14:11:16 -0800 |
commit | d257cf29744f732c4d9b1a741a26164940e87b90 (patch) | |
tree | 7d547847496ff6fadbe0d7a991a2b475a01464d7 /libc/src | |
parent | ab16fcf76e616dfa7cac2cb3dd909ba2a8eb2a9f (diff) |
Adding a few more libc's string functions.
Diffstat (limited to 'libc/src')
-rw-r--r-- | libc/src/malloc.c | 1 |
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); |