diff options
Diffstat (limited to 'src/user/app/tests')
-rw-r--r-- | src/user/app/tests/kernel/threads.c | 4 | ||||
-rw-r--r-- | src/user/app/tests/libc/esemaphore.c | 2 | ||||
-rw-r--r-- | src/user/app/tests/shared/ringbuf.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/user/app/tests/kernel/threads.c b/src/user/app/tests/kernel/threads.c index abca41c..b3c1c06 100644 --- a/src/user/app/tests/kernel/threads.c +++ b/src/user/app/tests/kernel/threads.c @@ -2,8 +2,8 @@ #include <camellia/flags.h> #include <camellia/syscalls.h> #include <string.h> -#include <user/lib/esemaphore.h> -#include <user/lib/thread.h> +#include <esemaphore.h> +#include <thread.h> int global_n; static void basic_thread(void *sem) { diff --git a/src/user/app/tests/libc/esemaphore.c b/src/user/app/tests/libc/esemaphore.c index 2f1d4bc..f089f4f 100644 --- a/src/user/app/tests/libc/esemaphore.c +++ b/src/user/app/tests/libc/esemaphore.c @@ -4,7 +4,7 @@ #include <stdio.h> #include <string.h> #include <unistd.h> -#include <user/lib/esemaphore.h> +#include <esemaphore.h> static void odd(hid_t out, struct evil_sem *sem1, struct evil_sem *sem2) { _sys_write(out, "1", 1, -1, 0); diff --git a/src/user/app/tests/shared/ringbuf.c b/src/user/app/tests/shared/ringbuf.c index d4e8dc9..d2a35a1 100644 --- a/src/user/app/tests/shared/ringbuf.c +++ b/src/user/app/tests/shared/ringbuf.c @@ -1,5 +1,5 @@ #include "../tests.h" -#include <shared/container/ring.h> +#include <shared/ring.h> #include <string.h> static void test_ringbuf(void) { |