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/includes/syscalls.h | 1 + 1 file changed, 1 insertion(+) (limited to 'kernel/includes') diff --git a/kernel/includes/syscalls.h b/kernel/includes/syscalls.h index f187d4b..6945c21 100644 --- a/kernel/includes/syscalls.h +++ b/kernel/includes/syscalls.h @@ -126,3 +126,4 @@ int syscall_socket(SYS_SOCKET_PARAMS *args); int syscall_fstat(int fd, struct stat *buf); u32 syscall_uptime(void); int syscall_isatty(int fd); +off_t syscall_lseek(int fd, off_t offset, int whence); -- cgit v1.2.3