Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
src
/
unistd
/
symlinkat.c
blob: d1c59b4db0991d18e2d15895709d72c636f09556 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
symlinkat
(
const
char
*
existing
,
int
fd
,
const
char
*
new
)
{
return
syscall
(
SYS_symlinkat
,
existing
,
fd
,
new
);
}