musl-tcc/src/stdio/__fclose_ca.c

7 lines
75 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include "stdio_impl.h"
int __fclose_ca(FILE *f)
{
return f->close(f);
}