From 6da1949cb5c4245cfb1fcee1efadb049904be26f Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 14 Mar 2011 23:11:32 +0100 Subject: use fputwc in putwchar() use fputwc instead of fputc add hidden fputwc to avoid jump relocation Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/stdio/fputwc.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libc/stdio/fputwc.c') diff --git a/libc/stdio/fputwc.c b/libc/stdio/fputwc.c index 7f46f48b8..b699e9d4b 100644 --- a/libc/stdio/fputwc.c +++ b/libc/stdio/fputwc.c @@ -19,6 +19,7 @@ libc_hidden_def(fputwc_unlocked) strong_alias(fputwc_unlocked,putwc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ strong_alias(fputwc_unlocked,fputwc) +libc_hidden_def(fputwc) strong_alias(fputwc_unlocked,putwc) #endif @@ -37,6 +38,7 @@ wint_t fputwc(wchar_t wc, register FILE *stream) return retval; } +libc_hidden_def(fputwc) strong_alias(fputwc,putwc) -- cgit v1.2.3