Minix2.0/src/lib/stdio/ferror.c

/*
 * ferror .c - test if an error on a stream occurred
 */
/* $Header: ferror.c,v 1.2 89/12/18 15:00:47 eck Exp $ */

#include	<stdio.h>

int
(ferror)(FILE *stream)
{
	return ferror(stream);
}