diff options
author | Anton Kling <anton@kling.gg> | 2024-04-18 18:22:00 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-18 18:22:20 +0200 |
commit | a8959b3da1b160c84da6ead6f12188b1824d76e6 (patch) | |
tree | 6f8995144d9fd184b2905ae07da94565c5b2ffe7 /kernel/cpu | |
parent | 5606d715128edaf1830c895fd3619f1f1af67d56 (diff) |
LibC/Kernel: Move lseek/seek to kernel
Diffstat (limited to 'kernel/cpu')
-rw-r--r-- | kernel/cpu/syscall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cpu/syscall.c b/kernel/cpu/syscall.c index 5412915..3765a84 100644 --- a/kernel/cpu/syscall.c +++ b/kernel/cpu/syscall.c @@ -182,6 +182,7 @@ int (*syscall_functions[])() = { (void(*))syscall_queue_create, (void(*))syscall_queue_add, (void(*))syscall_queue_wait, (void(*))syscall_munmap, (void(*))syscall_open_process, + (void(*))syscall_lseek, }; void int_syscall(reg_t *r); |