summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-27 09:50:03 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-27 09:50:03 +0000
commitb98389e43648a18e57ca8f00e4bf68dc0155fe55 (patch)
tree0a2b263ba28f4e971d79ba6c770dca555f77a0da
parent55ec8ed2958a8159777157f7a4f91210279fe548 (diff)
* gc.c: prototype; rb_io_fptr_finalize() doesn't return any value
at this version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--gc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dbf8b1b490..dd841750a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct 27 18:49:11 2004 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * gc.c: prototype; rb_io_fptr_finalize() doesn't return any value
+ at this version.
+
Wed Oct 27 17:27:45 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* gc.c (gc_sweep): recover ruby_in_compile variable.
diff --git a/gc.c b/gc.c
index dc5d9db75d..9b3eee3960 100644
--- a/gc.c
+++ b/gc.c
@@ -53,7 +53,7 @@ extern unsigned long __libc_ia64_register_backing_store_base;
#endif
void re_free_registers _((struct re_registers*));
-int rb_io_fptr_finalize _((struct OpenFile*));
+void rb_io_fptr_finalize _((struct OpenFile*));
#if !defined(setjmp) && defined(HAVE__SETJMP)
#define setjmp(env) _setjmp(env)