summaryrefslogtreecommitdiff
path: root/libio/getc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/getc.c')
-rw-r--r--libio/getc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libio/getc.c b/libio/getc.c
index c345e44ca6..0c0b6b84d3 100644
--- a/libio/getc.c
+++ b/libio/getc.c
@@ -25,10 +25,10 @@ the executable file might be covered by the GNU General Public License. */
#include "libioP.h"
#include "stdio.h"
-#undef getc
+#undef _IO_getc
int
-getc (fp)
+_IO_getc (fp)
FILE *fp;
{
int result;
@@ -39,6 +39,8 @@ getc (fp)
__libc_cleanup_region_end (1);
return result;
}
+#undef getc
+weak_alias (_IO_getc, getc)
#ifdef _IO_MTSAFE_IO
# undef getc_locked