Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
unistd
/
posix_close.c
blob: 4865b95331c9e79d5bc8b02b04ce0b81cdf915d6 [
file
] [
log
] [
blame
]
#include
<unistd.h>
int
posix_close
(
int
fd
,
int
flags
)
{
return
close
(
fd
);
}