mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-13 20:20:36 +00:00
7 lines
98 B
C
7 lines
98 B
C
#include <stdio.h>
|
|
|
|
#undef ferror
|
|
|
|
int ferror(FILE *stream)
|
|
{ return (stream->flags&__SERR)!=0; }
|