summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-11-19 14:42:45 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-11-19 14:42:45 +0000
commit04f27f5e8ddbbc06544d96df4097e0300685a1cc (patch)
treeda51f25d928d2c8825aa66b1bf6c5f7880aa8e11 /gc.c
parentdf96f994f1a224070ffaa61eb2bcb969d0109246 (diff)
* eval.c (rb_mod_modfunc): should follow NODE_ZSUPER link; based
on Guy Decoux's patch in [ruby-talk:25478]. * string.c (rb_str_succ): there was buffer overrun. * parse.y (str_extend): term can be any character. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1847 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index 90326e2d3a..effb38eccd 100644
--- a/gc.c
+++ b/gc.c
@@ -20,6 +20,11 @@
#include "re.h"
#include <stdio.h>
#include <setjmp.h>
+#include <sys/types.h>
+
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>