summaryrefslogtreecommitdiff
path: root/src/fios.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fios.h')
-rw-r--r--src/fios.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fios.h b/src/fios.h
index 0663b781b..591297076 100644
--- a/src/fios.h
+++ b/src/fios.h
@@ -80,6 +80,10 @@ struct DIR {
DIR *opendir(const wchar_t *path);
struct dirent *readdir(DIR *d);
int closedir(DIR *d);
+#else
+/* Use system-supplied opendir/readdir/closedir functions */
+# include <sys/types.h>
+# include <dirent.h>
#endif /* defined(WIN32) */
/**