Sign in
android
/
platform
/
external
/
musl
/
0b44a0315b47dd8eced9f3b7f31580cf14bbfc01
/
.
/
src
/
unistd
/
link.c
blob: f121bb9e350ae3e7ebdb27858aab857b1edf8b58 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
link
(
const
char
*
existing
,
const
char
*
new
)
{
return
syscall2
(
__NR_link
,
(
long
)
existing
,
(
long
)
new
);
}