diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-10 19:12:19 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-10 19:12:19 +0000 |
commit | f335b8c0ffb5fd7ae44d154900d78988b6abf769 (patch) | |
tree | 58b262177b70dda93f8d01d16efa031eecc07ff8 /libc/misc/wchar/wstdio.c | |
parent | 187eb613ecbfb6350ba8eba34601f47b70b61b3a (diff) | |
download | uClibc-alpine-f335b8c0ffb5fd7ae44d154900d78988b6abf769.tar.bz2 uClibc-alpine-f335b8c0ffb5fd7ae44d154900d78988b6abf769.tar.xz |
Merge from trunk.
Diffstat (limited to 'libc/misc/wchar/wstdio.c')
-rw-r--r-- | libc/misc/wchar/wstdio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/misc/wchar/wstdio.c b/libc/misc/wchar/wstdio.c index b0f259001..91917683a 100644 --- a/libc/misc/wchar/wstdio.c +++ b/libc/misc/wchar/wstdio.c @@ -263,8 +263,8 @@ UNLOCKED(wint_t,fgetwc,(register FILE *stream),(stream)) return wi; } -strong_alias(fgetwc_unlocked,getwc_unlocked); -strong_alias(fgetwc,getwc); +strong_alias(fgetwc_unlocked,getwc_unlocked) +strong_alias(fgetwc,getwc) #endif /**********************************************************************/ @@ -329,8 +329,8 @@ UNLOCKED(wint_t,fputwc,(wchar_t wc, FILE *stream),(wc, stream)) #endif } -strong_alias(fputwc_unlocked,putwc_unlocked); -strong_alias(fputwc,putwc); +strong_alias(fputwc_unlocked,putwc_unlocked) +strong_alias(fputwc,putwc) #endif /**********************************************************************/ |