Revert patch.
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1367 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/misc/mb_wc_common.h b/mingw-w64-crt/misc/mb_wc_common.h
index da73a11..caccf2b 100644
--- a/mingw-w64-crt/misc/mb_wc_common.h
+++ b/mingw-w64-crt/misc/mb_wc_common.h
@@ -4,10 +4,11 @@
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
-__declspec(dllimport) unsigned int _lc_codepage;
+#undef __lc_codepage
+__declspec(dllimport) unsigned int __lc_codepage;
static inline
unsigned int get_codepage (void)
{
- return _lc_codepage;
+ return __lc_codepage;
}