amiga-libnix3/stdio/feof.c

7 lines
94 B
C

#include <stdio.h>
#undef feof
int feof(FILE *stream)
{ return (stream->flags&__SEOF)!=0; }