summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/fclose.c
blob: 491ed2522449fd915549635d48ccf48b39156d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "dietstdio.h"
#include <stdlib.h>
#include <unistd.h>

int fclose(FILE *stream) {
  int res;
  FILE *f,*fl;
  fflush(stream);
  res=close(stream->fd);
  for (fl=0,f=__stdio_root; f; fl=f,f=f->next)
    if (f==stream) {
      if (fl)
	fl->next=f->next;
      else
	__stdio_root=f->next;
      break;
    }
  if ((!(stream->flags&STATICBUF))&&(stream->buf))
    free(stream->buf);
  free(stream);
  return res;
}