summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/fclose.c
blob: 6958a48e755b5203be1de0d65fde6d98a6f40425 (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
#include "dietstdio.h"
#include <stdlib.h>
#include <unistd.h>

int fclose(FILE *stream) {
  int res;
#ifdef WANT_BUFFERED_STDIO
  FILE *f,*fl;
#endif
  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;
}