diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-18 13:52:58 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-18 13:52:58 -0400 |
commit | ddc4fbc15223e362896a9f42beca73f05f48e664 (patch) | |
tree | 30f8ffc989bc66d9d9e67c7321b3d7a9c46dc130 /syscall/handler.c | |
parent | cfc793e204ba63d281e778a36992b8c86dd0ad88 (diff) | |
download | jove-kernel-ddc4fbc15223e362896a9f42beca73f05f48e664.tar.gz jove-kernel-ddc4fbc15223e362896a9f42beca73f05f48e664.tar.bz2 jove-kernel-ddc4fbc15223e362896a9f42beca73f05f48e664.zip |
move usermode-critical info to include/api
Diffstat (limited to 'syscall/handler.c')
-rw-r--r-- | syscall/handler.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/syscall/handler.c b/syscall/handler.c index 5bc3c6f..da36e17 100644 --- a/syscall/handler.c +++ b/syscall/handler.c @@ -1,11 +1,10 @@ -#include "syscall.h" +#include "api/syscall.h" +#include "api/error.h" #include "object.h" #include "handles.h" #include "device/processor.h" #include "print.h" -#include "error.h" #include "lock.h" -#include "memory.h" #include <stdint.h> #include <stddef.h> |