ack/lang/cem/libcc.ansi/stdio/ferror.c
1994-06-24 14:02:31 +00:00

13 lines
147 B
C

/*
* ferror .c - test if an error on a stream occurred
*/
/* $Id$ */
#include <stdio.h>
int
(ferror)(FILE *stream)
{
return ferror(stream);
}