Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
be82e122bf37fdcd1766d1ed220f0300b30ab6a3
/
.
/
src
/
unistd
/
linkat.c
blob: 0eb51221ff2b64156fecdf85e89a6118d8b5530a [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
linkat
(
int
fd1
,
const
char
*
existing
,
int
fd2
,
const
char
*
new
,
int
flag
)
{
return
syscall5
(
__NR_linkat
,
fd1
,
(
long
)
existing
,
fd2
,
(
long
)
new
,
flag
);
}