minix/lib/stdio/feof.c

13 lines
139 B
C
Raw Normal View History

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