f1b5bc7bc1f9861baa63efe88802249445eedb54
[reactos.git] / lib / msvcrt / stdio / ferror.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/stdio.h>
3 #include <msvcrt/internal/file.h>
4
5 #ifdef ferror
6 #undef ferror
7 int ferror(FILE *stream);
8 #endif
9
10 int *_errno(void);
11
12 int ferror(FILE *stream)
13 {
14   return stream->_flag & _IOERR;
15 }