diff options
Diffstat (limited to 'lib/libc/stdio/renameat.c')
| -rw-r--r-- | lib/libc/stdio/renameat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libc/stdio/renameat.c b/lib/libc/stdio/renameat.c new file mode 100644 index 00000000..93d435fa --- /dev/null +++ b/lib/libc/stdio/renameat.c @@ -0,0 +1,6 @@ +#include <syscall.h> + +int renameat(int oldfd, const char *old, int newfd, const char *new) +{ + return syscall(renameat, oldfd, old, newfd, new); +} |
