minix/lib/stdio/ferror.c

13 lines
151 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* ferror .c - test if an error on a stream occurred
*/
/* $Header$ */
#include <stdio.h>
int
(ferror)(FILE *stream)
{
return ferror(stream);
}