ref: 3e2b9fc5817172876d54d82e4ddc7df78b051212
dir: /lib/c/fclose.c/
#include <stdio.h> #include "syscall.h" #undef fclose extern int _flsbuf(FILE *fp); int fclose(FILE *fp) { int r = EOF; if ((fp->flags & _IOSTRG) == 0 && fp->flags & (_IOWRITE | _IOREAD | _IOWR)) { r = 0; if (_flsbuf(fp) == EOF) r = EOF; if (_close(fp->fd) < 0) r = EOF; } if (fp->flags & _IOALLOC) { free(fp->buf); fp->buf = NULL; } fp->flags &= ~(_IOWRITE | _IOREAD | _IOWR | _IOERR | _IOEOF | _IOALLOC | _IOTXT | _IOSTRG); return r; }