diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-02 01:50:58 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-02 01:50:58 +0000 |
commit | 6fd3ac79613c9e1832513b0f614860be2735993f (patch) | |
tree | 5f6bfb750aed249d5951d84de663c03f9e4b82dd /libc/stdio/fputc.c | |
parent | 9acef89e60381a298801e4b221d66b1538072b28 (diff) | |
download | uClibc-alpine-6fd3ac79613c9e1832513b0f614860be2735993f.tar.bz2 uClibc-alpine-6fd3ac79613c9e1832513b0f614860be2735993f.tar.xz |
Merge from trunk.
Diffstat (limited to 'libc/stdio/fputc.c')
-rw-r--r-- | libc/stdio/fputc.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index ad3c95517..46ebb163c 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -14,7 +14,7 @@ #ifdef __DO_UNLOCKED -int __fputc_unlocked(int c, register FILE *stream) +int attribute_hidden __libc_fputc_unlocked(int c, register FILE *stream) { __STDIO_STREAM_VALIDATE(stream); @@ -69,11 +69,12 @@ int __fputc_unlocked(int c, register FILE *stream) return EOF; } -weak_alias(__fputc_unlocked,fputc_unlocked); -weak_alias(__fputc_unlocked,putc_unlocked); +strong_alias(__libc_fputc_unlocked,__fputc_unlocked) +weak_alias(__fputc_unlocked,fputc_unlocked) +weak_alias(__fputc_unlocked,putc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -weak_alias(__fputc_unlocked,fputc); -weak_alias(__fputc_unlocked,putc); +weak_alias(__fputc_unlocked,fputc) +weak_alias(__fputc_unlocked,putc) #endif #elif defined __UCLIBC_HAS_THREADS__ @@ -91,6 +92,6 @@ int fputc(int c, register FILE *stream) } } -weak_alias(fputc,putc); +weak_alias(fputc,putc) #endif |