1 /* 2 * feof.c - test if eof on a stream occurred 3 */ 4 /* $Header$ */ 5 6 #include <stdio.h> 7 8 int 9 (feof)(FILE *stream) 10 { 11 return feof(stream); 12 } 13