diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-06 15:06:00 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-06 15:06:00 +0000 |
commit | 1d3d27b42d1371ba6242ec217ca803f107ceb9eb (patch) | |
tree | 8d7e184fd63610124717df8dec31e719901965ad /missing/alloca.c | |
parent | 94df732f8b69356626130e0ec8b2dbc9340082ef (diff) | |
download | ruby-1d3d27b42d1371ba6242ec217ca803f107ceb9eb.tar.gz |
forgot some checkins.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing/alloca.c')
-rw-r--r-- | missing/alloca.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/missing/alloca.c b/missing/alloca.c index 6879618c8a..39697f114a 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 */ } |