diff options
Diffstat (limited to 'src/unistd/renameat.c')
-rw-r--r-- | src/unistd/renameat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/renameat.c b/src/unistd/renameat.c new file mode 100644 index 00000000..0dae9f11 --- /dev/null +++ b/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 syscall4(__NR_renameat, oldfd, (long)old, newfd, (long)new); +} |