diff options
Diffstat (limited to 'libio/ioftell.c')
-rw-r--r-- | libio/ioftell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/ioftell.c b/libio/ioftell.c index 1fc7c55a51..7fe18f890b 100644 --- a/libio/ioftell.c +++ b/libio/ioftell.c @@ -32,10 +32,10 @@ _IO_ftell (fp) { _IO_pos_t pos; CHECK_FILE (fp, -1L); - __libc_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); + _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); _IO_flockfile (fp); pos = _IO_seekoff (fp, 0, _IO_seek_cur, 0); - __libc_cleanup_region_end (1); + _IO_cleanup_region_end (1); if (pos == _IO_pos_BAD) { #ifdef EIO |