diff options
author | johnvg | 2010-10-13 13:11:52 +0000 |
---|---|---|
committer | johnvg | 2010-10-13 13:11:52 +0000 |
commit | 931ba82e962aa411f0400307d668025d1a8e6e13 (patch) | |
tree | 6db202cf1ea2649e957d28a4691dfaf200c71daa /main/Unix | |
parent | disable 'function may fail' warnings for Clean 2 (diff) |
#include <string.h> to prevent c compiler warnings
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1805 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main/Unix')
-rw-r--r-- | main/Unix/cDirectory.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/Unix/cDirectory.c b/main/Unix/cDirectory.c index b95f19b..842020e 100644 --- a/main/Unix/cDirectory.c +++ b/main/Unix/cDirectory.c @@ -1,3 +1,6 @@ + +#include <stdlib.h> +#include <string.h> #include <stdio.h> #include <errno.h> #include <fcntl.h> @@ -5,7 +8,6 @@ #include <time.h> #include <dirent.h> #include <unistd.h> -#include <stdio.h> #include "Clean.h" #ifndef NAME_MAX |