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/includes | |
parent | 5606d715128edaf1830c895fd3619f1f1af67d56 (diff) |
LibC/Kernel: Move lseek/seek to kernel
Diffstat (limited to 'kernel/includes')
-rw-r--r-- | kernel/includes/syscalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |