ack/lang/cem/libcc.ansi/stdio/feof.c
1989-12-18 15:04:14 +00:00

13 lines
139 B
C

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