Fix missing includes in folder.h

Fix some warning message
This commit is contained in:
jsteube
2016-09-22 11:05:04 +02:00
parent 2215174c2e
commit 97d9a5d9cc
2 changed files with 11 additions and 8 deletions
+6 -7
View File
@@ -4,22 +4,21 @@
*/
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <dirent.h>
#include <unistd.h>
#if defined (_POSIX)
#include <sys/types.h>
#if defined (__APPLE__)
#include <mach-o/dyld.h>
#endif // __APPLE__
#endif // _POSIX
#include <limits.h>
#if defined (_POSIX)
#include <sys/types.h>
#include <pwd.h>
#endif
#if defined (__APPLE__)
#include <mach-o/dyld.h>
#endif // __APPLE__
#if defined (_WIN)
#include <windows.h>
#endif