amiga-libnix3/stdio/ferror.c

7 lines
98 B
C

#include <stdio.h>
#undef ferror
int ferror(FILE *stream)
{ return (stream->flags&__SERR)!=0; }