summaryrefslogtreecommitdiff
path: root/regex.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-19 04:49:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-19 04:49:27 +0000
commitd1ca5e6d6a03b87ab58b496a2691fa55eaf36ea0 (patch)
tree8ea8848a00d6749194ab5565e87a1f0546900697 /regex.c
parent1a7929a9696b98f355415edc1d62cd2f9425fcac (diff)
* eval.c (rb_eval_string_wrap): should hide the toplevel local
variable bindings by PUSH_SCOPE(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2089 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/regex.c b/regex.c
index 54dd725262..583dd20a65 100644
--- a/regex.c
+++ b/regex.c
@@ -72,16 +72,6 @@ void rb_trap_exec _((void));
# define CHECK_INTS if (!rb_prohibit_interrupt) {\
if (rb_trap_pending) rb_trap_exec();\
}
-
-#define xmalloc ruby_xmalloc
-#define xcalloc ruby_xcalloc
-#define xrealloc ruby_xrealloc
-#define xfree ruby_xfree
-
-void *xmalloc _((long));
-void *xcalloc _((long,long));
-void *xrealloc _((void*,long));
-void xfree _((void*));
#endif
/* Make alloca work the best possible way. */