summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-29 16:23:17 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-29 16:33:44 -0400
commitac02de97b856aa8805d81edcaa561a1d77527a4d (patch)
tree0edebe6ab43d4471e2d8fef61dc9aa0150b40ba6 /tests
parentb3636fa8864913413455a050c5425447c9e98bc0 (diff)
downloadbfs-ac02de97b856aa8805d81edcaa561a1d77527a4d.tar.xz
Fix includes
Diffstat (limited to 'tests')
-rw-r--r--tests/bfstd.c1
-rw-r--r--tests/bit.c1
-rw-r--r--tests/ioq.c2
-rw-r--r--tests/list.c3
-rw-r--r--tests/main.c1
-rw-r--r--tests/sighook.c1
-rw-r--r--tests/xtime.c1
7 files changed, 4 insertions, 6 deletions
diff --git a/tests/bfstd.c b/tests/bfstd.c
index fe64ff3..a43783a 100644
--- a/tests/bfstd.c
+++ b/tests/bfstd.c
@@ -6,7 +6,6 @@
#include "bfstd.h"
#include "diag.h"
-#include <errno.h>
#include <langinfo.h>
#include <stdlib.h>
#include <string.h>
diff --git a/tests/bit.c b/tests/bit.c
index 1446b13..cc95785 100644
--- a/tests/bit.c
+++ b/tests/bit.c
@@ -5,7 +5,6 @@
#include "bfs.h"
#include "bit.h"
-#include "diag.h"
#include <limits.h>
#include <stdint.h>
diff --git a/tests/ioq.c b/tests/ioq.c
index a2db813..f067436 100644
--- a/tests/ioq.c
+++ b/tests/ioq.c
@@ -3,12 +3,10 @@
#include "tests.h"
-#include "bfstd.h"
#include "diag.h"
#include "dir.h"
#include "ioq.h"
-#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
diff --git a/tests/list.c b/tests/list.c
index b3d74a1..5d0403f 100644
--- a/tests/list.c
+++ b/tests/list.c
@@ -4,8 +4,11 @@
#include "tests.h"
#include "bfs.h"
+#include "diag.h"
#include "list.h"
+#include <stddef.h>
+
struct item {
int n;
struct item *next;
diff --git a/tests/main.c b/tests/main.c
index dcb5d98..81c2311 100644
--- a/tests/main.c
+++ b/tests/main.c
@@ -7,7 +7,6 @@
#include "tests.h"
-#include "bfstd.h"
#include "color.h"
#include <locale.h>
diff --git a/tests/sighook.c b/tests/sighook.c
index 4121a44..aa01c36 100644
--- a/tests/sighook.c
+++ b/tests/sighook.c
@@ -7,6 +7,7 @@
#include "thread.h"
#include "sighook.h"
+#include <stddef.h>
#include <errno.h>
#include <pthread.h>
#include <signal.h>
diff --git a/tests/xtime.c b/tests/xtime.c
index c87a69e..3472bea 100644
--- a/tests/xtime.c
+++ b/tests/xtime.c
@@ -4,7 +4,6 @@
#include "tests.h"
#include "bfs.h"
-#include "bfstd.h"
#include "diag.h"
#include "xtime.h"