diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2016-08-21 12:14:32 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-08-21 12:14:32 +0200 |
commit | 5085ce21063a9edaff9856b0caf3a76adcbf68e8 (patch) | |
tree | 56dc815ae5b3eecebc0174cfbd8b8cf73251e798 | |
parent | 0df76cbd63477cc33ad7e0444d49557e906c4c74 (diff) | |
download | cygnal-5085ce21063a9edaff9856b0caf3a76adcbf68e8.tar.gz cygnal-5085ce21063a9edaff9856b0caf3a76adcbf68e8.tar.bz2 cygnal-5085ce21063a9edaff9856b0caf3a76adcbf68e8.zip |
Remove extern declaration of __locale_cjk_lang in string/local.h
Now that __locale_cjk_lang is an inline function in setlocale.h and
setlocale.h is included, the declaration doesn't make sense.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | newlib/libc/string/local.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/string/local.h b/newlib/libc/string/local.h index babaad0e5..afef7e34a 100644 --- a/newlib/libc/string/local.h +++ b/newlib/libc/string/local.h @@ -4,10 +4,6 @@ /* internal function to compute width of wide char. */ int _EXFUN (__wcwidth, (wint_t)); -/* Defined in locale/locale.c. Returns a value != 0 if the current - language is assumed to use CJK fonts. */ -int _EXFUN (__locale_cjk_lang, (void)); - /* Taken from glibc: Add the compiler optimization to inhibit loop transformation to library |