summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-03-22 08:59:26 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-03-22 08:59:26 +0000
commitaf139b7b41b4f550080089b5bae2dd5d818fe511 (patch)
tree6e2b7d9acc5a7948ab6487e3084997246376b5b3 /gc.c
parentadb111e23562ec48c8a2fdf7429c759b9600019c (diff)
* ruby.h: better inline function support.
* configure.in (NO_C_INLINE): check if inline is available for the C compiler. * marshal.c (r_object): len calculation patch was wrong for machines SIZEOF_BDIGITS == SIZEOF_SHORT. * gc.c: alloca prototype reorganized for C_ALLOCA machine. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gc.c b/gc.c
index 0c0bdc1485..efe9669760 100644
--- a/gc.c
+++ b/gc.c
@@ -50,12 +50,6 @@ void *alloca();
#pragma alloca
#endif
-#ifdef C_ALLOCA
-#ifndef alloca
-void *alloca();
-#endif
-#endif
-
static void run_final();
#ifndef GC_MALLOC_LIMIT