aboutsummaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
Diffstat (limited to 'io')
-rw-r--r--io/test-utime.c1
-rw-r--r--io/tst-faccessat.c1
-rw-r--r--io/tst-fchmodat.c1
-rw-r--r--io/tst-fchownat.c1
-rw-r--r--io/tst-fstatat.c1
-rw-r--r--io/tst-futimesat.c1
-rw-r--r--io/tst-linkat.c1
-rw-r--r--io/tst-mkdirat.c2
-rw-r--r--io/tst-mkfifoat.c2
-rw-r--r--io/tst-mknodat.c2
-rw-r--r--io/tst-openat.c1
-rw-r--r--io/tst-readlinkat.c1
-rw-r--r--io/tst-renameat.c1
-rw-r--r--io/tst-symlinkat.c1
-rw-r--r--io/tst-unlinkat.c1
15 files changed, 18 insertions, 0 deletions
diff --git a/io/test-utime.c b/io/test-utime.c
index e0207e6..3e7583c 100644
--- a/io/test-utime.c
+++ b/io/test-utime.c
@@ -16,6 +16,7 @@
<http://www.gnu.org/licenses/>. */
#include <fcntl.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
diff --git a/io/tst-faccessat.c b/io/tst-faccessat.c
index 4853207..7bdeed0 100644
--- a/io/tst-faccessat.c
+++ b/io/tst-faccessat.c
@@ -6,6 +6,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-fchmodat.c b/io/tst-fchmodat.c
index bfb75d6..7d4a871 100644
--- a/io/tst-fchmodat.c
+++ b/io/tst-fchmodat.c
@@ -6,6 +6,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-fchownat.c b/io/tst-fchownat.c
index da8fd3b..e8adf62 100644
--- a/io/tst-fchownat.c
+++ b/io/tst-fchownat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-fstatat.c b/io/tst-fstatat.c
index 5493102..4766bb2 100644
--- a/io/tst-fstatat.c
+++ b/io/tst-fstatat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-futimesat.c b/io/tst-futimesat.c
index c1e8d93..af58ad0 100644
--- a/io/tst-futimesat.c
+++ b/io/tst-futimesat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
#include <sys/time.h>
diff --git a/io/tst-linkat.c b/io/tst-linkat.c
index d63c982..97445b7 100644
--- a/io/tst-linkat.c
+++ b/io/tst-linkat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-mkdirat.c b/io/tst-mkdirat.c
index 3efa462..a960c66 100644
--- a/io/tst-mkdirat.c
+++ b/io/tst-mkdirat.c
@@ -1,9 +1,11 @@
#include <dirent.h>
#include <fcntl.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-mkfifoat.c b/io/tst-mkfifoat.c
index 2bf29f6..d87b587 100644
--- a/io/tst-mkfifoat.c
+++ b/io/tst-mkfifoat.c
@@ -1,9 +1,11 @@
#include <dirent.h>
#include <fcntl.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-mknodat.c b/io/tst-mknodat.c
index cba4dff..9d58fdb 100644
--- a/io/tst-mknodat.c
+++ b/io/tst-mknodat.c
@@ -1,9 +1,11 @@
#include <dirent.h>
#include <fcntl.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-openat.c b/io/tst-openat.c
index 0ceb745..741b8d0 100644
--- a/io/tst-openat.c
+++ b/io/tst-openat.c
@@ -1,5 +1,6 @@
#include <dirent.h>
#include <fcntl.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/io/tst-readlinkat.c b/io/tst-readlinkat.c
index 891b6e6..51fafc9 100644
--- a/io/tst-readlinkat.c
+++ b/io/tst-readlinkat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-renameat.c b/io/tst-renameat.c
index a7c0ec1..435302b 100644
--- a/io/tst-renameat.c
+++ b/io/tst-renameat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-symlinkat.c b/io/tst-symlinkat.c
index 1e98588..214a8e3 100644
--- a/io/tst-symlinkat.c
+++ b/io/tst-symlinkat.c
@@ -4,6 +4,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/stat.h>
static void prepare (void);
diff --git a/io/tst-unlinkat.c b/io/tst-unlinkat.c
index c25443c..e21d56f 100644
--- a/io/tst-unlinkat.c
+++ b/io/tst-unlinkat.c
@@ -1,5 +1,6 @@
#include <dirent.h>
#include <fcntl.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>