summaryrefslogtreecommitdiff
path: root/kernel/cpu
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-16 15:24:45 +0100
committerAnton Kling <anton@kling.gg>2023-11-16 15:24:45 +0100
commita288258785bac3c2000227532f4a17210813c506 (patch)
tree450f6e9afdb961728f4ecbc89a91f9782e3aa4c6 /kernel/cpu
parent6164f8564e94ffa7ee8fbfcc82f4350a35ab08a5 (diff)
Kernel: Change how syscalls are built and implemented.
Diffstat (limited to 'kernel/cpu')
-rw-r--r--kernel/cpu/syscall.c18
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>