/*
 * feof.c - test if eof on a stream occurred
 */
/* $Header: /cvsup/minix/src/lib/stdio/feof.c,v 1.1.1.1 2005/04/21 14:56:35 beng Exp $ */

#include	<stdio.h>

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