aboutsummaryrefslogtreecommitdiffstats
path: root/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/defines.h b/defines.h
index 9b5154e580..48ca3aa8a1 100644
--- a/defines.h
+++ b/defines.h
@@ -42,13 +42,17 @@
#endif
#define xmalloc ruby_xmalloc
+#define xmalloc2 ruby_xmalloc2
#define xcalloc ruby_xcalloc
#define xrealloc ruby_xrealloc
+#define xrealloc2 ruby_xrealloc2
#define xfree ruby_xfree
void *xmalloc(long);
+void *xmalloc2(long,long);
void *xcalloc(long,long);
void *xrealloc(void*,long);
+void *xrealloc2(void*,long,long);
void xfree(void*);
#if SIZEOF_LONG_LONG > 0