9f7ee18c23fa98837aa44f49b2d58ecef8b3e4a6
[musl] / src / stdio / __stdio_close.c
1 #include "stdio_impl.h"
2
3 int __stdio_close(FILE *f)
4 {
5         return syscall(SYS_close, f->fd);
6 }