15 lines
192 B
C
15 lines
192 B
C
/*
|
|
* A subroutine version of the macro ferror
|
|
*/
|
|
#define USE_STDIO_MACROS
|
|
#include <stdio.h>
|
|
|
|
#undef ferror
|
|
|
|
int
|
|
ferror(fp)
|
|
register FILE *fp;
|
|
{
|
|
return (fp->_flag & _IOERR) != 0;
|
|
}
|