Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
unistd
/
renameat.c
blob: 125748221f13c3a4fe5fb33684f309c18f802ed7 [
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
);
}