mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[CRT]
* Update feof(). CORE-8080 svn path=/trunk/; revision=63253
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
||||
Reference in New Issue
Block a user