From a8959b3da1b160c84da6ead6f12188b1824d76e6 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 18 Apr 2024 18:22:00 +0200 Subject: LibC/Kernel: Move lseek/seek to kernel --- kernel/cpu/syscall.c | 1 + 1 file changed, 1 insertion(+) (limited to 'kernel/cpu') 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); -- cgit v1.2.3