isblank() implementation.
[minix.git] / lib / libc / stdio / feof.c
blob98eade6c6047829e99f12932955704bbc570075e
1 /*
2 * feof.c - test if eof on a stream occurred
3 */
4 /* $Header$ */
6 #include <stdio.h>
8 int
9 (feof)(FILE *stream)
11 return feof(stream);