fxlibc/src/stdio/ferror.c

7 lines
64 B
C
Raw Normal View History

#include <stdio.h>
int ferror(FILE *fp)
{
return fp->error;
}