about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--mlist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mlist.c b/mlist.c
index 5aaf380..0fade35 100644
--- a/mlist.c
+++ b/mlist.c
@@ -1,7 +1,6 @@
 #define _GNU_SOURCE
 
 #include <sys/stat.h>
-#include <sys/syscall.h>
 
 #include <dirent.h>
 #include <fcntl.h>
@@ -89,6 +88,8 @@ list(char *prefix, char *file)
 #ifdef __linux__
 // faster implementation of readdir using a bigger getdents buffer
 
+#include <sys/syscall.h>
+
 struct linux_dirent64 {
 	ino64_t        d_ino;    /* 64-bit inode number */
 	off64_t        d_off;    /* 64-bit offset to next structure */