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 | 7cac8a63655ad829b915144f447681cb6b25cbe8 (patch) | |
| tree | 8d7e184fd63610124717df8dec31e719901965ad /missing | |
| parent | 34b2868fef4ea1159f0441cab4c30738e101eec7 (diff) | |
| download | ruby-7cac8a63655ad829b915144f447681cb6b25cbe8.tar.gz ruby-7cac8a63655ad829b915144f447681cb6b25cbe8.tar.xz ruby-7cac8a63655ad829b915144f447681cb6b25cbe8.zip | |
forgot some checkins.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
| -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 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 */ } |
