aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r--src/kernel/syscall/syscall.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
index 956bc37..2ae60b2 100644
--- a/src/kernel/syscall/syscall.c
+++ b/src/kernel/syscall/syscall.c
@@ -1,10 +1,10 @@
-#include <stdint.h>
#include <common.h>
-#include <syscall/syscall.h>
#include <interrupts/interrupts.h>
-#include <system.h>
-#include <lib/stdio.h>
#include <io/io.h>
+#include <lib/stdio.h>
+#include <stdint.h>
+#include <syscall/syscall.h>
+#include <system.h>
#include <tasks/process.h>
typedef u32 (*syscall_func)(u32, ...);
@@ -46,4 +46,4 @@ void syscall_handler(struct regs *r)
void syscalls_install()
{
isr_install_handler(0x80, syscall_handler);
-}
+} \ No newline at end of file