diff options
Diffstat (limited to 'src/user/bootstrap')
-rw-r--r-- | src/user/bootstrap/main.c | 4 | ||||
-rw-r--r-- | src/user/bootstrap/tar.c | 4 | ||||
-rw-r--r-- | src/user/bootstrap/tar.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/user/bootstrap/main.c b/src/user/bootstrap/main.c index 5f36aa1..fecd38f 100644 --- a/src/user/bootstrap/main.c +++ b/src/user/bootstrap/main.c @@ -1,6 +1,6 @@ -#include <shared/flags.h> +#include <camellia/flags.h> +#include <camellia/syscalls.h> #include <shared/mem.h> -#include <shared/syscalls.h> #include <user/lib/elfload.h> #include <user/lib/fs/misc.h> diff --git a/src/user/bootstrap/tar.c b/src/user/bootstrap/tar.c index 40da437..a392f4c 100644 --- a/src/user/bootstrap/tar.c +++ b/src/user/bootstrap/tar.c @@ -1,6 +1,6 @@ -#include <shared/flags.h> +#include <camellia/flags.h> +#include <camellia/syscalls.h> #include <shared/mem.h> -#include <shared/syscalls.h> #include <stdint.h> #include "tar.h" diff --git a/src/user/bootstrap/tar.h b/src/user/bootstrap/tar.h index 43aa9ed..fe4d6c5 100644 --- a/src/user/bootstrap/tar.h +++ b/src/user/bootstrap/tar.h @@ -1,5 +1,5 @@ #pragma once -#include <shared/types.h> +#include <camellia/types.h> _Noreturn void tar_driver(void *base); void *tar_find(const char *path, size_t path_len, void *base, size_t base_len); |