From 7cac8a63655ad829b915144f447681cb6b25cbe8 Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 6 May 2001 15:06:00 +0000 Subject: forgot some checkins. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing/alloca.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'missing') diff --git a/missing/alloca.c b/missing/alloca.c index 6879618c8..39697f114 100644 --- a/missing/alloca.c +++ b/missing/alloca.c @@ -52,7 +52,12 @@ typedef char *pointer; /* generic pointer type */ #define NULL 0 /* null pointer constant */ -extern void free(); +#ifdef RUBY_LIB +#define xmalloc ruby_xmalloc +#define xfree ruby_xfree +#endif + +extern void xfree(); extern pointer xmalloc(); /* @@ -157,7 +162,7 @@ alloca (size) /* returns pointer to storage */ { register header *np = hp->h.next; - free ((pointer) hp); /* collect garbage */ + xfree ((pointer) hp); /* collect garbage */ hp = np; /* -> next header */ } -- cgit