From e24034b0f8e36a6b50f557f952e09a9e96eb3b6d Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 18 Mar 2002 08:21:40 +0000 Subject: * eval.c (rb_f_abort): should not bypass cleanup. * ext/stringio/stringio.c (check_modifiable): void function. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/stringio') diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 25122dd1b..14611a77f 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -32,6 +32,7 @@ static struct StringIO* check_strio _((VALUE)); static struct StringIO* get_strio _((VALUE)); static struct StringIO* readable _((struct StringIO *)); static struct StringIO* writable _((struct StringIO *)); +static struct void check_modifiable _((struct StringIO *)); #define IS_STRIO(obj) (RDATA(obj)->dmark == (RUBY_DATA_FUNC)strio_mark) #define error_inval(msg) (errno = EINVAL, rb_sys_fail(msg)) @@ -117,7 +118,7 @@ writable(ptr) return ptr; } -static struct StringIO* +static struct void check_modifiable(ptr) struct StringIO *ptr; { -- cgit