summaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-03-26 09:09:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-03-26 09:09:41 +0000
commitfbbd5539ae0959e888b651039ea36caf5e4e061c (patch)
treeb3d63be30753a247585f8dacd12200e1e2cea1ea /regex.h
parentcdde29b924f3f310382d059938b0c94e209fced7 (diff)
1.1b9_05_pre1
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/regex.h b/regex.h
index 1bca032024..1d25ea62e1 100644
--- a/regex.h
+++ b/regex.h
@@ -172,7 +172,11 @@ extern long re_syntax_options;
extern const unsigned char *mbctab;
extern int current_mbctype;
+#ifdef __STDC__
void mbcinit (int);
+#else
+void mbcinit ();
+#endif
#undef ismbchar
#define ismbchar(c) mbctab[(unsigned char)(c)]