blob: d988a549d733263eec4b02ec46c549f27043a6a4 [file] [log] [blame]
#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);
}