diff options
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/stdio/local.h | 6 | ||||
-rw-r--r-- | newlib/libc/stdlib/local.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/stdio/local.h b/newlib/libc/stdio/local.h index 7305bd58c..b69524c57 100644 --- a/newlib/libc/stdio/local.h +++ b/newlib/libc/stdio/local.h @@ -222,6 +222,6 @@ typedef enum { PWPOS, /* get positional parameter value for variable width or precision */ } __ACTION; -_CONST __CH_CLASS __chclass[256]; -_CONST __STATE __state_table[MAX_STATE][MAX_CH_CLASS]; -_CONST __ACTION __action_table[MAX_STATE][MAX_CH_CLASS]; +extern _CONST __CH_CLASS __chclass[256]; +extern _CONST __STATE __state_table[MAX_STATE][MAX_CH_CLASS]; +extern _CONST __ACTION __action_table[MAX_STATE][MAX_CH_CLASS]; diff --git a/newlib/libc/stdlib/local.h b/newlib/libc/stdlib/local.h index 347154ac1..3e8eb02c6 100644 --- a/newlib/libc/stdlib/local.h +++ b/newlib/libc/stdlib/local.h @@ -57,10 +57,10 @@ int __big5_mbtowc (struct _reent *, wchar_t *, const char *, size_t, #endif #endif -wchar_t __iso_8859_conv[14][0x60]; +extern wchar_t __iso_8859_conv[14][0x60]; int __iso_8859_index (const char *); -wchar_t __cp_conv[12][0x80]; +extern wchar_t __cp_conv[12][0x80]; int __cp_index (const char *); #include <float.h> |