summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 06:32:32 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 06:32:32 +0000
commit08c1738c512e2e3be60da17638e2857b547b2933 (patch)
treea976030df331224166c56f94e73ed7ac87fe8ec8 /io.c
parent6b1239a8203a6150762eb8856c72771784b33bd0 (diff)
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c, gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h, node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h, rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c, util.c, util.h, variable.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/io.c b/io.c
index 02010d8671..eae3ce0d33 100644
--- a/io.c
+++ b/io.c
@@ -72,7 +72,7 @@
#include <unistd.h>
#endif
-extern void Init_File _((void));
+extern void Init_File(void);
#ifdef __BEOS__
# ifndef NOFILE
@@ -110,7 +110,7 @@ static ID id_write, id_read, id_getc, id_flush;
extern char *ruby_inplace_mode;
-struct timeval rb_time_interval _((VALUE));
+struct timeval rb_time_interval(VALUE);
static VALUE filename, current_file;
static int gets_lineno;
@@ -202,7 +202,7 @@ rb_io_check_closed(OpenFile *fptr)
}
}
-static int io_fflush _((OpenFile *));
+static int io_fflush(OpenFile *);
static VALUE
rb_io_get_io(VALUE io)
@@ -2693,7 +2693,7 @@ pipe_del_fptr(OpenFile *fptr)
}
static void
-pipe_atexit _((void))
+pipe_atexit(void)
{
struct pipe_list *list = pipe_list;
struct pipe_list *tmp;