diff options
Diffstat (limited to 'libio/iofflush.c')
-rw-r--r-- | libio/iofflush.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libio/iofflush.c b/libio/iofflush.c index 385c962..af69486 100644 --- a/libio/iofflush.c +++ b/libio/iofflush.c @@ -35,11 +35,10 @@ _IO_fflush (fp) { int result; CHECK_FILE (fp, EOF); - __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_SYNC (fp) ? EOF : 0; - __libc_cleanup_region_end (1); + _IO_cleanup_region_end (1); return result; } } |