xref
: /
third_party
/
musl
/
src
/
unistd
/
posix_close.c
(revision 570af302)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/musl/src/unistd/
1
#
include
<
unistd.h
>
2
3
int
posix_close
(
int
fd
,
int
flags
)
4
{
5
return
close
(
fd
);
6
}
7