Index: src/examples/multicore.c
===================================================================
--- src/examples/multicore.c	(revision 75a17f10fc7c34b407256654caaa8d663af91674)
+++ src/examples/multicore.c	(revision 4a3334cf1b33bf9d49940a420eba798a1e968186)
@@ -1,4 +1,4 @@
 #include <kernel>
-#include <threads>
+#include <thread>
 
 struct MyThread { thread t; };
Index: src/tests/coroutine.c
===================================================================
--- src/tests/coroutine.c	(revision 75a17f10fc7c34b407256654caaa8d663af91674)
+++ src/tests/coroutine.c	(revision 4a3334cf1b33bf9d49940a420eba798a1e968186)
@@ -1,4 +1,4 @@
 #include <fstream>
-#include <coroutines>
+#include <coroutine>
 
 struct Fibonacci {
Index: src/tests/monitor.c
===================================================================
--- src/tests/monitor.c	(revision 75a17f10fc7c34b407256654caaa8d663af91674)
+++ src/tests/monitor.c	(revision 4a3334cf1b33bf9d49940a420eba798a1e968186)
@@ -2,5 +2,5 @@
 #include <kernel>
 #include <monitor>
-#include <threads>
+#include <thread>
 
 struct global_t {
Index: src/tests/multi-monitor.c
===================================================================
--- src/tests/multi-monitor.c	(revision 75a17f10fc7c34b407256654caaa8d663af91674)
+++ src/tests/multi-monitor.c	(revision 4a3334cf1b33bf9d49940a420eba798a1e968186)
@@ -2,5 +2,5 @@
 #include <kernel>
 #include <monitor>
-#include <threads>
+#include <thread>
 
 static int global12, global23, global13;
Index: src/tests/thread.c
===================================================================
--- src/tests/thread.c	(revision 75a17f10fc7c34b407256654caaa8d663af91674)
+++ src/tests/thread.c	(revision 4a3334cf1b33bf9d49940a420eba798a1e968186)
@@ -2,5 +2,5 @@
 #include <kernel>
 #include <stdlib>
-#include <threads>
+#include <thread>
 
 struct First { thread t; signal_once* lock; };
