13 lines
151 B
C
13 lines
151 B
C
|
/*
|
||
|
* ferror .c - test if an error on a stream occurred
|
||
|
*/
|
||
|
/* $Header$ */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
(ferror)(FILE *stream)
|
||
|
{
|
||
|
return ferror(stream);
|
||
|
}
|