diff options
Diffstat (limited to 'src/kernel/syscalls.c')
-rw-r--r-- | src/kernel/syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/syscalls.c b/src/kernel/syscalls.c index f884fd3..9c4e2fa 100644 --- a/src/kernel/syscalls.c +++ b/src/kernel/syscalls.c @@ -1,3 +1,5 @@ +#include <camellia/flags.h> +#include <camellia/syscalls.h> #include <kernel/arch/generic.h> #include <kernel/mem/alloc.h> #include <kernel/mem/virt.h> @@ -5,9 +7,7 @@ #include <kernel/pipe.h> #include <kernel/proc.h> #include <kernel/vfs/path.h> -#include <shared/flags.h> #include <shared/mem.h> -#include <shared/syscalls.h> #include <stdint.h> #define SYSCALL_RETURN(val) do { \ |