diff options
Diffstat (limited to 'libio/fseek.c')
-rw-r--r-- | libio/fseek.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/fseek.c b/libio/fseek.c index 61f2e92..3d4e492 100644 --- a/libio/fseek.c +++ b/libio/fseek.c @@ -33,9 +33,9 @@ fseek (fp, offset, whence) { int result; CHECK_FILE (fp, -1); - __libc_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); + _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); _IO_flockfile (fp); result = _IO_fseek (fp, offset, whence); - __libc_cleanup_region_end (1); + _IO_cleanup_region_end (1); return result; } |