blob: 97f14535e0081109c27de7e135c9359c7b12087a [file] [log] [blame]
#include <stdio.h>
#include "syscall.h"
int rename(const char *old, const char *new)
{
return syscall(SYS_rename, old, new);
}