diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-24 01:15:25 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:32 +0200 |
commit | d46dc8bc88e38251bfa3712efe7abf62933f5419 (patch) | |
tree | 2d608c443d752fc7294cbeb8f3a57143047d4417 /libc/misc/wchar/wchar.c | |
parent | c8eb6b4c7a9f84f6fd902654509dc32741dc9e6c (diff) |
iconv: Do not include __iconv_codesets into iconv utility
Host iconv needs only L_iconv_main defined and __iconv_codesets
has to included, as host system does not provide it.
Keep __iconv_codesets out of iconv linked against uClibc.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/misc/wchar/wchar.c')
-rw-r--r-- | libc/misc/wchar/wchar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/misc/wchar/wchar.c b/libc/misc/wchar/wchar.c index 412c557eb..0704096a9 100644 --- a/libc/misc/wchar/wchar.c +++ b/libc/misc/wchar/wchar.c @@ -1196,6 +1196,9 @@ libc_hidden_proto(__iconv_codesets) #endif #if defined L_iconv || defined L_iconv_main +# ifdef L_iconv_main +static +# endif const unsigned char __iconv_codesets[] = "\x0a\xe0""WCHAR_T\x00" /* superset of UCS-4 but platform-endian */ #if __BYTE_ORDER == __BIG_ENDIAN |