Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
65c8be380431eebe4d70d130bd38563f8df9a7d7
/
.
/
src
/
unistd
/
symlink.c
blob: 0973d78a8936bca2cef633f361abd2401bd82f4a [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
<fcntl.h>
#include
"syscall.h"
int
symlink
(
const
char
*
existing
,
const
char
*
new
)
{
#ifdef
SYS_symlink
return
syscall
(
SYS_symlink
,
existing
,
new
);
#else
return
syscall
(
SYS_symlinkat
,
existing
,
AT_FDCWD
,
new
);
#endif
}