Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
unistd
/
symlink.c
blob: 0973d78a8936bca2cef633f361abd2401bd82f4a [
file
]
#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
}