diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-07 02:32:27 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-07 02:32:27 +0000 |
commit | e523bd15353350c3480b8a1820a0944b0fa8212e (patch) | |
tree | 60485116f9c62c306bb753f12f9d4eb79d16aa4e /libc/stdio/fputwc.c | |
parent | 3b3434516a3415d7e0f4e1d50c553876dcb337b2 (diff) | |
download | uClibc-alpine-e523bd15353350c3480b8a1820a0944b0fa8212e.tar.bz2 uClibc-alpine-e523bd15353350c3480b8a1820a0944b0fa8212e.tar.xz |
Big fricking merge from trunk.
Diffstat (limited to 'libc/stdio/fputwc.c')
-rw-r--r-- | libc/stdio/fputwc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/stdio/fputwc.c b/libc/stdio/fputwc.c index dbea948dc..8f1178710 100644 --- a/libc/stdio/fputwc.c +++ b/libc/stdio/fputwc.c @@ -14,11 +14,11 @@ wint_t attribute_hidden __fputwc_unlocked(wchar_t wc, FILE *stream) return _wstdio_fwrite(&wc, 1, stream) ? wc : WEOF; } -weak_alias(__fputwc_unlocked,fputwc_unlocked); -weak_alias(__fputwc_unlocked,putwc_unlocked); +weak_alias(__fputwc_unlocked,fputwc_unlocked) +weak_alias(__fputwc_unlocked,putwc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -weak_alias(__fputwc_unlocked,fputwc); -weak_alias(__fputwc_unlocked,putwc); +weak_alias(__fputwc_unlocked,fputwc) +weak_alias(__fputwc_unlocked,putwc) #endif #elif defined __UCLIBC_HAS_THREADS__ @@ -37,6 +37,6 @@ wint_t fputwc(wchar_t wc, register FILE *stream) return retval; } -weak_alias(fputwc,putwc); +weak_alias(fputwc,putwc) #endif |