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