diff options
author | Anton Kling <anton@kling.gg> | 2024-11-22 22:33:06 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-11-22 22:33:06 +0100 |
commit | 8fa2af9678b9e257a1dfb1e5111f35d22366f2c6 (patch) | |
tree | d82d3b9678b2fcfdc901455f4ca2ed13dc49aaa7 /userland/libc/include/syscall.h | |
parent | 8827f3033d76b0d9c7d8d8225077176a813f7f49 (diff) |
vfs: Add dup()
Diffstat (limited to 'userland/libc/include/syscall.h')
-rw-r--r-- | userland/libc/include/syscall.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index a0303f4..95ab817 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -53,6 +53,7 @@ #define SYS_QUEUE_WAIT 45 #define SYS_SENDFILE 46 #define SYS_SHM_UNLINK 47 +#define SYS_DUP 48 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); |