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
cuserid: support invocation with a null pointer argument
[musl.git]
/
src
/
unistd
/
posix_close.c
blob
90f51a82e32d69921e6ddce5cb5c473d59bfc935
1
#include <unistd.h>
2
3
int
posix_close
(
int
fd
,
int
flags
)
4
{
5
return
close
(
fd
);
6
}