summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 08:30:16 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 08:30:16 +0000
commitca32aea6a24d443434f1fa40b9091edc16ef03bf (patch)
treeb8c1a5df91b119f95dbccc89ce69e4fc09e7b40a /io.c
parent6c32e232d90c3347dbb52366a378265f19022e38 (diff)
* dir.c: changed `foo (*bar)_((boo))' to `foo (*bar)(boo)`.
* enumerator.c, eval.c, gc.c, intern.h, io.c, process.c, ruby.c, ruby.h, signal.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index eae3ce0d33..3f666933cc 100644
--- a/io.c
+++ b/io.c
@@ -459,7 +459,7 @@ rb_io_wait_readable(int f)
rb_fd_set(f, &rfds);
#ifdef HAVE_RB_FD_INIT
rb_ensure(wait_readable, (VALUE)&rfds,
- (VALUE (*)_((VALUE)))rb_fd_term, (VALUE)&rfds);
+ (VALUE (*)(VALUE))rb_fd_term, (VALUE)&rfds);
#else
rb_thread_select(f + 1, &rfds, NULL, NULL, NULL);
#endif
@@ -502,7 +502,7 @@ rb_io_wait_writable(int f)
rb_fd_set(f, &wfds);
#ifdef HAVE_RB_FD_INIT
rb_ensure(wait_writable, (VALUE)&wfds,
- (VALUE (*)_((VALUE)))rb_fd_term, (VALUE)&wfds);
+ (VALUE (*)(VALUE))rb_fd_term, (VALUE)&wfds);
#else
rb_thread_select(f + 1, NULL, &wfds, NULL, NULL);
#endif