diff options
author | Anton Kling <anton@kling.gg> | 2023-11-16 15:24:45 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-16 15:24:45 +0100 |
commit | a288258785bac3c2000227532f4a17210813c506 (patch) | |
tree | 450f6e9afdb961728f4ecbc89a91f9782e3aa4c6 /kernel/cpu | |
parent | 6164f8564e94ffa7ee8fbfcc82f4350a35ab08a5 (diff) |
Kernel: Change how syscalls are built and implemented.
Diffstat (limited to 'kernel/cpu')
-rw-r--r-- | kernel/cpu/syscall.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/kernel/cpu/syscall.c b/kernel/cpu/syscall.c index 40a5b07..a1e39ac 100644 --- a/kernel/cpu/syscall.c +++ b/kernel/cpu/syscall.c @@ -7,23 +7,7 @@ #include <fs/tmpfs.h> #include <fs/vfs.h> #include <kmalloc.h> -#include <scalls/accept.h> -#include <scalls/bind.h> -#include <scalls/chdir.h> -#include <scalls/ftruncate.h> -#include <scalls/getcwd.h> -#include <scalls/kill.h> -#include <scalls/mkdir.h> -#include <scalls/mmap.h> -#include <scalls/msleep.h> -#include <scalls/ppoll.h> -#include <scalls/recvfrom.h> -#include <scalls/sendto.h> -#include <scalls/shm.h> -#include <scalls/sigaction.h> -#include <scalls/socket.h> -#include <scalls/stat.h> -#include <scalls/uptime.h> +#include <syscalls.h> #include <string.h> #include <typedefs.h> |