ack/lang/cem/libcc.ansi/stdio/feof.c
2018-06-21 22:33:47 +02:00

12 lines
134 B
C

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