about summary refs log tree commit diff
path: root/libio/fgetc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/fgetc.c')
-rw-r--r--libio/fgetc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/fgetc.c b/libio/fgetc.c
index a754c4b78b..25bfed5596 100644
--- a/libio/fgetc.c
+++ b/libio/fgetc.c
@@ -31,9 +31,9 @@ fgetc (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_getc_unlocked (fp);
-  __libc_cleanup_region_end (1);
+  _IO_cleanup_region_end (1);
   return result;
 }