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

int fclose(FILE *stream) {
  int res;
#ifdef WANT_BUFFERED_STDIO
  FILE *f,*fl;
#endif
  if (!stream)
	  return EOF;
  fflush(stream);
  res=close(stream->fd);
#ifdef WANT_BUFFERED_STDIO
  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;
    }
#endif
  free(stream);
  return res;
}