Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
stdio
/
__stdio_close.c
blob: c83bb318207f26c1dfc2bc1d078363280b7f0c08 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
static
int
dummy
(
int
fd
)
{
return
fd
;
}
weak_alias
(
dummy
,
__aio_close
);
int
__stdio_close
(
FILE
*
f
)
{
return
syscall
(
SYS_close
,
__aio_close
(
f
->
fd
));
}