minix/lib/stdio/ferror.c
2009-11-09 10:26:00 +00:00

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);
}