Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
src
/
stdio
/
__stdio_close.c
blob: 79452bdb6498a18eea555568a16d0333ac8ad06d [
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
));
}