Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
stdio
/
rename.c
blob: c94be0750c7bc971232addc16f44052fbc21fb84 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<fcntl.h>
#include
"syscall.h"
int
rename
(
const
char
*
old
,
const
char
*
new
)
{
#ifdef
SYS_rename
return
syscall
(
SYS_rename
,
old
,
new
);
#else
return
syscall
(
SYS_renameat
,
AT_FDCWD
,
old
,
AT_FDCWD
,
new
);
#endif
}