Index: fusl/src/unistd/renameat.c |
diff --git a/fusl/src/unistd/renameat.c b/fusl/src/unistd/renameat.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..125748221f13c3a4fe5fb33684f309c18f802ed7 |
--- /dev/null |
+++ b/fusl/src/unistd/renameat.c |
@@ -0,0 +1,7 @@ |
+#include <stdio.h> |
+#include "syscall.h" |
+ |
+int renameat(int oldfd, const char *old, int newfd, const char *new) |
+{ |
+ return syscall(SYS_renameat, oldfd, old, newfd, new); |
+} |