minix/lib/libc/stdio/ferror.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);
}