summaryrefslogtreecommitdiff
path: root/Kernel/API/Syscall.h
diff options
context:
space:
mode:
authorsin-ack <sin-ack@users.noreply.github.com>2022-10-01 11:15:02 +0000
committerAndrew Kaster <andrewdkaster@gmail.com>2022-12-11 19:55:37 -0700
commit9850a69cd199d48bc30a34e2fe38d5590b536aac (patch)
tree506a12437ac1651c9e25b2e08cdbc63ac80bf119 /Kernel/API/Syscall.h
parent5c1d5ed51da2cf3b9463413f704ea0e740950736 (diff)
downloadserenity-9850a69cd199d48bc30a34e2fe38d5590b536aac.zip
Kernel+LibC+LibCore: Implement `symlinkat(2)`
Co-Authored-By: Daniel Bertalan <dani@danielbertalan.dev>
Diffstat (limited to 'Kernel/API/Syscall.h')
-rw-r--r--Kernel/API/Syscall.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h
index f306e549b1..cd58e676bb 100644
--- a/Kernel/API/Syscall.h
+++ b/Kernel/API/Syscall.h
@@ -413,6 +413,7 @@ struct SC_mknod_params {
struct SC_symlink_params {
StringArgument target;
StringArgument linkpath;
+ int dirfd;
};
struct SC_rename_params {