diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 23:36:38 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 23:36:38 +0000 |
commit | 855dca36fe7aa348dc56996385fbbb77fbf3e83d (patch) | |
tree | acb8204659fd3f784cd2fa9248e6ab09861af47b /libc/stdio/fputc.c | |
parent | 86450311ebd0010553252d6d9efadb208dd085cb (diff) |
Rename newly created __libc_x (reserved for libpthread overwrites) w/ x_internal, do not use cascading aliases
Diffstat (limited to 'libc/stdio/fputc.c')
-rw-r--r-- | libc/stdio/fputc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index 46ebb163c..b319263a1 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -14,7 +14,7 @@ #ifdef __DO_UNLOCKED -int attribute_hidden __libc_fputc_unlocked(int c, register FILE *stream) +int attribute_hidden __fputc_unlocked_internal(int c, register FILE *stream) { __STDIO_STREAM_VALIDATE(stream); @@ -69,12 +69,12 @@ int attribute_hidden __libc_fputc_unlocked(int c, register FILE *stream) return EOF; } -strong_alias(__libc_fputc_unlocked,__fputc_unlocked) -weak_alias(__fputc_unlocked,fputc_unlocked) -weak_alias(__fputc_unlocked,putc_unlocked) +strong_alias(__fputc_unlocked_internal,__fputc_unlocked) +weak_alias(__fputc_unlocked_internal,fputc_unlocked) +weak_alias(__fputc_unlocked_internal,putc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -weak_alias(__fputc_unlocked,fputc) -weak_alias(__fputc_unlocked,putc) +weak_alias(__fputc_unlocked_internal,fputc) +weak_alias(__fputc_unlocked_internal,putc) #endif #elif defined __UCLIBC_HAS_THREADS__ |