Index: fusl/src/unistd/symlinkat.c |
diff --git a/fusl/src/unistd/symlinkat.c b/fusl/src/unistd/symlinkat.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d1c59b4db0991d18e2d15895709d72c636f09556 |
--- /dev/null |
+++ b/fusl/src/unistd/symlinkat.c |
@@ -0,0 +1,7 @@ |
+#include <unistd.h> |
+#include "syscall.h" |
+ |
+int symlinkat(const char *existing, int fd, const char *new) |
+{ |
+ return syscall(SYS_symlinkat, existing, fd, new); |
+} |