summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-09 00:28:32 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-09 00:28:32 +0000
commit1ff4b6bb11233ec1fb0a65a1327c23622794b1ce (patch)
treedc5e87a43db6dd00915cdf0c8e127cc03729f5f5 /test
parent0f6b97d4de53fd5b33ce26d3d41b887516d805dd (diff)
need unistd/string header files
Diffstat (limited to 'test')
-rw-r--r--test/stat/stat.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/stat/stat.c b/test/stat/stat.c
index c1ce4b8b3..c9e063f27 100644
--- a/test/stat/stat.c
+++ b/test/stat/stat.c
@@ -1,6 +1,9 @@
#include <stdio.h>
+#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
+#include <unistd.h>
+#include <stdlib.h>
void print_struct_stat(char *msg, struct stat *s)
{