Files

16 lines
211 B
C
Raw Permalink Normal View History

2020-07-18 17:22:20 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <__fio.h>
int fclose(FILE *fp)
{
int res = __fio_fclose(fp);
if (res != 0) {
return EOF;
}
free(fp);
return 0;
}