diff options
author | Marvin Borner | 2021-05-23 14:30:07 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-23 14:34:52 +0200 |
commit | 33fd97e19a12535c02b1cf6804cb854a279e040c (patch) | |
tree | 0ea00a9b60b35e42830eb3b13887fea2d356d655 /kernel/features/syscall.c | |
parent | 0bf64a113f3d3baa110b362fd6a215ef29182671 (diff) |
Cleanup, linting, formatting
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index b376a13..9efb849 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -1,20 +1,19 @@ // MIT License, Copyright (c) 2020 Marvin Borner #include <drivers/cpu.h> +#include <drivers/interrupts.h> +#include <drivers/timer.h> #include <errno.h> #include <fs.h> -#include <drivers/interrupts.h> #include <io.h> #include <load.h> #include <mem.h> #include <mm.h> -#include <net.h> #include <print.h> #include <proc.h> #include <str.h> #include <sys.h> #include <syscall.h> -#include <drivers/timer.h> static void syscall_handler(struct regs *r) { |