repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
in clock_getres, check for null pointer before storing result
[musl.git]
/
src
/
unistd
/
linkat.c
blob
6a9a0b77591a2273ad99d46cd228ead6a60b73f6
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
int
linkat
(
int
fd1
,
const char
*
existing
,
int
fd2
,
const char
*
new
,
int
flag
)
5
{
6
return
syscall
(
SYS_linkat
,
fd1
,
existing
,
fd2
,
new
,
flag
);
7
}