* Update feof().
CORE-8080

svn path=/trunk/; revision=63253
This commit is contained in:
Amine Khaldi 2014-05-12 13:17:31 +00:00
parent 83e1917b77
commit e34ff107cd

View file

@ -2232,13 +2232,7 @@ int CDECL fclose(FILE* file)
*/
int CDECL feof(FILE* file)
{
int ret;
_lock_file(file);
ret = file->_flag & _IOEOF;
_unlock_file(file);
return ret;
return file->_flag & _IOEOF;
}
/*********************************************************************