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

/*
 * feof.c - test if eof on a stream occurred
 */
/* $Header: feof.c,v 1.2 89/12/18 15:00:39 eck Exp $ */

#include	<stdio.h>

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