aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/__fclose_ca.c
blob: fc7ff8fce63fe1a657f4fb607ae544f541d149b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stdio_impl.h"

int __fclose_ca(FILE *f)
{
	return f->close(f);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif