diff options
author | Marvin Borner | 2021-05-20 20:41:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:41:24 +0200 |
commit | 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (patch) | |
tree | 952331f841b4d02d0b7189da716648df5cdb4d8e /kernel/features/syscall.c | |
parent | b22346a9b830b642e684e13cf4946d8ef8d8e1ca (diff) |
Major restructuring
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index b66cd2e..b376a13 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -1,9 +1,9 @@ // MIT License, Copyright (c) 2020 Marvin Borner -#include <cpu.h> +#include <drivers/cpu.h> #include <errno.h> #include <fs.h> -#include <interrupts.h> +#include <drivers/interrupts.h> #include <io.h> #include <load.h> #include <mem.h> @@ -14,7 +14,7 @@ #include <str.h> #include <sys.h> #include <syscall.h> -#include <timer.h> +#include <drivers/timer.h> static void syscall_handler(struct regs *r) { |