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