summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-21 00:31:16 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-21 00:31:16 +0000
commite056e74e648de39ffa4a318db2b4870007d3cc36 (patch)
treefc6a7776bdfa728867d1ee19a8ec41b97841d3ab
parentcc2bf84ff5dc019286011a6ccb3ba28ef8e35f32 (diff)
* rubyio.h (rb_eof_error): should mark as NORETURN. (backported
from CVS HEAD) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7796 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--rubyio.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d99d2661b..97e165bff5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jan 21 09:30:16 2005 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * rubyio.h (rb_eof_error): should mark as NORETURN. (backported
+ from CVS HEAD)
+
Fri Jan 21 00:31:36 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* ext/syck/rubyext.c (syck_parser_bufsize_set): avoid VC++ warning
diff --git a/rubyio.h b/rubyio.h
index 63fcf74f85..ae4db3bb0f 100644
--- a/rubyio.h
+++ b/rubyio.h
@@ -78,7 +78,7 @@ int rb_io_wait_readable _((int));
int rb_io_wait_writable _((int));
VALUE rb_io_taint_check _((VALUE));
-void rb_eof_error _((void));
+NORETURN(void rb_eof_error _((void)));
void rb_read_check _((FILE*));
int rb_read_pending _((FILE*));