diff options
Diffstat (limited to 'newlib/libc/stdio/feof.c')
-rw-r--r-- | newlib/libc/stdio/feof.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/feof.c b/newlib/libc/stdio/feof.c index e8db65b..c0216ff 100644 --- a/newlib/libc/stdio/feof.c +++ b/newlib/libc/stdio/feof.c @@ -58,8 +58,8 @@ _DEFUN(feof, (fp), { int result; CHECK_INIT(_REENT, fp); - _flockfile (fp); + _newlib_flockfile_start (fp); result = __sfeof (fp); - _funlockfile (fp); + _newlib_flockfile_end (fp); return result; } |