mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00
[CRT]
* Update feof(). CORE-8080 svn path=/trunk/; revision=63253
This commit is contained in:
parent
83e1917b77
commit
e34ff107cd
1 changed files with 1 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
|
Loading…
Reference in a new issue