This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
179 B
C
11 lines
179 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <stdio.h>
|
|
#include <libc/file.h>
|
|
|
|
#undef feof
|
|
int
|
|
feof(FILE *stream)
|
|
{
|
|
return stream->_flag & _IOEOF;
|
|
}
|