Sign in
cobalt
/
cobalt
/
b108943525536ed016362e9c99ce219a9c351109
/
.
/
third_party
/
musl
/
src
/
unistd
/
linkat.c
blob: 6a9a0b77591a2273ad99d46cd228ead6a60b73f6 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
linkat
(
int
fd1
,
const
char
*
existing
,
int
fd2
,
const
char
*
new
,
int
flag
)
{
return
syscall
(
SYS_linkat
,
fd1
,
existing
,
fd2
,
new
,
flag
);
}