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
fix AS-safety of close when aio is in use and fd map is expanded
[musl.git]
/
src
/
unistd
/
unlinkat.c
blob
e0e25d22a30c47efc6e98df9f2d4c89953039919
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
int
unlinkat
(
int
fd
,
const char
*
path
,
int
flag
)
5
{
6
return
syscall
(
SYS_unlinkat
,
fd
,
path
,
flag
);
7
}