summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/unistd/linkat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/unistd/linkat.c')
-rw-r--r--libc-top-half/musl/src/unistd/linkat.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/unistd/linkat.c b/libc-top-half/musl/src/unistd/linkat.c
new file mode 100644
index 0000000..6a9a0b7
--- /dev/null
+++ b/libc-top-half/musl/src/unistd/linkat.c
@@ -0,0 +1,7 @@
+#include <unistd.h>
+#include "syscall.h"
+
+int linkat(int fd1, const char *existing, int fd2, const char *new, int flag)
+{
+ return syscall(SYS_linkat, fd1, existing, fd2, new, flag);
+}