minix/lib/stdio/ferror.c
2005-04-21 14:53:53 +00:00

13 lines
151 B
C
Executable file

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