8 lines
129 B
C
8 lines
129 B
C
#include <stdio.h>
|
|
#include "syscall.h"
|
|
|
|
int rename(const char *old, const char *new)
|
|
{
|
|
return syscall(SYS_rename, old, new);
|
|
}
|