summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--eval.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7c3c36d47c..a7c8020d9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri May 13 11:29:00 2005 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * eval.c (unknown_node): add volatile directive to prototype.
+
Thu May 12 17:08:48 2005 Tanaka Akira <akr@m17n.org>
* io.c (rb_io_eof, remain_size, read_all, io_read, appendline)
diff --git a/eval.c b/eval.c
index e7daf76997..8345788f9f 100644
--- a/eval.c
+++ b/eval.c
@@ -2754,7 +2754,7 @@ class_prefix(self, cpath)
NORETURN(static void return_jump _((VALUE)));
NORETURN(static void break_jump _((VALUE)));
-NORETURN(static void unknown_node _((NODE *)));
+NORETURN(static void unknown_node _((NODE * volatile)));
static void
unknown_node(node)