Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
45ca5d3fcb6f874bf5ba55d0e9651cef68515395
/
.
/
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
));
}