diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-29 23:11:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-29 23:11:41 +0000 |
commit | acb9062515ee49cb725df443c95cac47ec06b52d (patch) | |
tree | 76fffffcd039b90bdc09e713a5dd0b2f74c40165 /test/malloc | |
parent | d651de236da8a51c096995cf250b7455ec3caa0c (diff) |
need to include string.h for some mem funcs
Diffstat (limited to 'test/malloc')
-rw-r--r-- | test/malloc/malloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/malloc/malloc.c b/test/malloc/malloc.c index 8e93cf205..1cea31986 100644 --- a/test/malloc/malloc.c +++ b/test/malloc/malloc.c @@ -1,6 +1,7 @@ #include <unistd.h> #include <stdlib.h> +#include <string.h> #include <stdio.h> #define N_PTRS 1000 |