ack/lang/cem/libcc.ansi/sys/stdio/feof.c
2018-06-23 18:54:40 +02:00

16 lines
166 B
C

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