Sign in
android
/
platform
/
external
/
musl
/
dba68bf9
/
.
/
src
/
stdio
/
__stdio_close.c
blob: 9f7ee18c23fa98837aa44f49b2d58ecef8b3e4a6 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
int
__stdio_close
(
FILE
*
f
)
{
return
syscall
(
SYS_close
,
f
->
fd
);
}