summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-25 23:52:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-25 23:52:18 +0000
commitdf0034f89002c38bee77e17f2fd5a0502d902460 (patch)
tree1ad07287c599e307f1f6061cb2b9b3c79066c198
parenta77206582e9372d748db3bbc85c9c3ab0c6681db (diff)
* internal.h (rb_reg_search0): not a public API.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45415 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--internal.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/internal.h b/internal.h
index f72a7921ee..da6b5fa236 100644
--- a/internal.h
+++ b/internal.h
@@ -810,6 +810,7 @@ VALUE rb_rational_reciprocal(VALUE x);
/* re.c */
VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
VALUE rb_reg_check_preprocess(VALUE);
+long rb_reg_search0(VALUE, VALUE, long, int, int);
/* signal.c */
int rb_get_next_signal(void);
@@ -978,9 +979,6 @@ VALUE rb_gcd_normal(VALUE self, VALUE other);
VALUE rb_gcd_gmp(VALUE x, VALUE y);
#endif
-/* re.c */
-long rb_reg_search0(VALUE, VALUE, long, int, int);
-
/* util.c */
extern const signed char ruby_digit36_to_number_table[];