diff options
author | Anton Kling <anton@kling.gg> | 2024-04-29 22:20:47 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-29 22:20:47 +0200 |
commit | db496f358fc2165a99880bd0c01f0273e24cc0ae (patch) | |
tree | 54adc6edba3466dd08b38eab76e30525bdd99c49 /kernel | |
parent | 231301a6190605bd3ced4d961ee0d5d3fcd49d65 (diff) |
Kernel/LibC: Remove unused syscalls
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/cpu/syscall.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/cpu/syscall.c b/kernel/cpu/syscall.c index b72beff..897703a 100644 --- a/kernel/cpu/syscall.c +++ b/kernel/cpu/syscall.c @@ -193,12 +193,6 @@ int (*syscall_functions[])() = { (void(*))syscall_virtual_to_physical, (void(*))syscall_install_irq, (void(*))syscall_tmp_handle_packet, - (void(*))NULL, - (void(*))NULL, - (void(*))NULL, - (void(*))NULL, - (void(*))NULL, - (void(*))NULL, (void(*))syscall_munmap, (void(*))syscall_open_process, (void(*))syscall_lseek, |