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