From 5c2de4b255999bc1d6d76cc87edd8c37b72231ab Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 25 Nov 2005 00:53:38 +0000 Subject: Change internal name __f[ge,pu]tc_unlocked to __libc_x --- libc/stdio/fgetc.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'libc/stdio/fgetc.c') diff --git a/libc/stdio/fgetc.c b/libc/stdio/fgetc.c index 3df25c39a..78fca8422 100644 --- a/libc/stdio/fgetc.c +++ b/libc/stdio/fgetc.c @@ -14,7 +14,7 @@ #ifdef __DO_UNLOCKED -int attribute_hidden __fgetc_unlocked(FILE *stream) +int attribute_hidden __libc_fgetc_unlocked(FILE *stream) { __STDIO_STREAM_VALIDATE(stream); @@ -69,11 +69,12 @@ int attribute_hidden __fgetc_unlocked(FILE *stream) return EOF; } -weak_alias(__fgetc_unlocked,fgetc_unlocked); -weak_alias(__fgetc_unlocked,getc_unlocked); +strong_alias(__libc_fgetc_unlocked,__fgetc_unlocked) +weak_alias(__fgetc_unlocked,fgetc_unlocked) +weak_alias(__fgetc_unlocked,getc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -weak_alias(__fgetc_unlocked,fgetc); -weak_alias(__fgetc_unlocked,getc); +weak_alias(__fgetc_unlocked,fgetc) +weak_alias(__fgetc_unlocked,getc) #endif #elif defined __UCLIBC_HAS_THREADS__ -- cgit v1.2.3