Files
photon/libc/stdio/ferror.c

8 lines
92 B
C

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