diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-14 23:11:32 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:24 +0200 |
commit | 6da1949cb5c4245cfb1fcee1efadb049904be26f (patch) | |
tree | 76d9cbe907b4337435aea67335ae431780d874c9 /include | |
parent | 0eb904a89cbd1b5fc61cd9fedbf737c55fcaa303 (diff) |
use fputwc in putwchar()
use fputwc instead of fputc
add hidden fputwc to avoid jump relocation
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h index aee2b6ee8..099aa9fde 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -656,6 +656,7 @@ extern wint_t getwchar (void); These functions are possible cancellation points and therefore not marked with __THROW. */ extern wint_t fputwc (wchar_t __wc, __FILE *__stream); +libc_hidden_proto(fputwc) extern wint_t putwc (wchar_t __wc, __FILE *__stream); /* Write a character to stdout. |