diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 19:10:38 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 19:10:38 +0000 |
commit | 0d5d9538d11c77432d5701b2de957c6bdd66d0ab (patch) | |
tree | 0f1c3805c74f97bd7e66a1f5d1c8af49b8a32919 /libc/stdio/fputwc.c | |
parent | 0d8bfb18d5621852d9c4fb1f5107b846e44eed2d (diff) |
Remove trailing ; after *alias()
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 |