ack/lang/cem/libcc.ansi/stdio/feof.c
1994-06-24 14:02:31 +00:00

13 lines
135 B
C

/*
* feof.c - test if eof on a stream occurred
*/
/* $Id$ */
#include <stdio.h>
int
(feof)(FILE *stream)
{
return feof(stream);
}