summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/stderr.c
blob: a82b1b727bcc4bf8e9eb3db103269e2c17c7b718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <dietstdio.h>

#ifdef WANT_BUFFERED_STDIO
static FILE __stderr = { 2, NOBUF, 0, 0 };

int __fflush_stderr() {
  return fflush(stderr);
}
#else
static FILE __stderr = { 2, 0 };
#endif

FILE *stderr=&__stderr;