]> sourceware.org Git - newlib-cygwin.git/commitdiff
* libc/stdio/local.h (__chclass, __state_table, __action_table):
authorCorinna Vinschen <corinna@vinschen.de>
Wed, 22 Apr 2009 08:30:03 +0000 (08:30 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Wed, 22 Apr 2009 08:30:03 +0000 (08:30 +0000)
Add extern to the declarations.
* libc/stdlib/local.h (__iso_8859_conv, __cp_conv): Likewise.

newlib/ChangeLog
newlib/libc/stdio/local.h
newlib/libc/stdlib/local.h

index 03f792ff60e95640924d1c9bbbd505cfb8b3c5ca..8d3c1addf752f5e8953f4b083c591d2b75740fa2 100644 (file)
@@ -1,3 +1,9 @@
+2009-04-22  Kazu Hirata  <kazu@codesourcery.com>
+
+       * libc/stdio/local.h (__chclass, __state_table, __action_table):
+       Add extern to the declarations.
+       * libc/stdlib/local.h (__iso_8859_conv, __cp_conv): Likewise.
+
 2009-04-21  Corinna Vinschen  <corinna@vinschen.de>
 
        * libc/ctype/ctype_.c (_CTYPE_DATA_128_255): Rename from
index 7305bd58cacc753b898ec151f3928b90f73e01a1..b69524c57983d369b96024a50f5ea253755a8fa8 100644 (file)
@@ -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];
index 347154ac1b8f7e744a4ea3ab7d1fbb9071f5aad7..3e8eb02c677460625fac099ac8e6ef039df8ba7b 100644 (file)
@@ -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>
This page took 0.05339 seconds and 5 git commands to generate.