fxlibc/src/libc/stdio/ferror.c

7 lines
64 B
C

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