diff options
author | Marvin Borner | 2020-05-07 22:19:13 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 22:19:13 +0200 |
commit | 9b2e28ad7a752c0fe7b60e73ca43c827b45b3ee8 (patch) | |
tree | 5b1b48ccf8324cced9ae9c4139b493cd98789cc2 /src/kernel/syscall/syscall.h | |
parent | 43184e40b14a5e41383ffb053e7c69c93ff81036 (diff) |
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/syscall/syscall.h')
-rw-r--r-- | src/kernel/syscall/syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/syscall/syscall.h b/src/kernel/syscall/syscall.h index c5167a4..7e37c81 100644 --- a/src/kernel/syscall/syscall.h +++ b/src/kernel/syscall/syscall.h @@ -1,8 +1,8 @@ #ifndef MELVIX_SYSCALL_H #define MELVIX_SYSCALL_H -#include <stdint.h> #include <interrupts/interrupts.h> +#include <stdint.h> extern void idt_syscall(); |