summaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-15 05:43:28 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-15 05:43:28 +0000
commit2631e080db1e1dde9603d6bfa6f2f6f21fd7c628 (patch)
tree4c4e8c773950d0e980c260123753b0a24d9cfc62 /regex.h
parentc25084921670dfe33a0871ee7b94c102fea0ea3a (diff)
ruby 1.1b9_20
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/regex.h b/regex.h
index 1d25ea62e1..406351afd7 100644
--- a/regex.h
+++ b/regex.h
@@ -169,12 +169,13 @@ extern long re_syntax_options;
#define MBCTYPE_EUC 1
#define MBCTYPE_SJIS 2
-extern const unsigned char *mbctab;
extern int current_mbctype;
#ifdef __STDC__
+extern const unsigned char *mbctab;
void mbcinit (int);
#else
+extern unsigned char *mbctab;
void mbcinit ();
#endif