diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-14 06:32:32 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-14 06:32:32 +0000 |
commit | 8577a9c771a31d4306872fd85b9ca9d9ba3efc2d (patch) | |
tree | a976030df331224166c56f94e73ed7ac87fe8ec8 /marshal.c | |
parent | 9dc6ca66956fe6ee8f6a0b80ae3dc93e5d33ccf0 (diff) | |
download | ruby-8577a9c771a31d4306872fd85b9ca9d9ba3efc2d.tar.gz ruby-8577a9c771a31d4306872fd85b9ca9d9ba3efc2d.tar.xz ruby-8577a9c771a31d4306872fd85b9ca9d9ba3efc2d.zip |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'marshal.c')
-rw-r--r-- | marshal.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -113,7 +113,7 @@ class2path(VALUE klass) return path; } -static void w_long _((long, struct dump_arg*)); +static void w_long(long, struct dump_arg*); static void w_nbyte(char *s, int n, struct dump_arg *arg) @@ -327,7 +327,7 @@ w_unique(char *s, struct dump_arg *arg) w_symbol(rb_intern(s), arg); } -static void w_object _((VALUE,struct dump_arg*,int)); +static void w_object(VALUE,struct dump_arg*,int); static int hash_each(VALUE key, VALUE value, struct dump_call_arg *arg) @@ -738,7 +738,7 @@ struct load_arg { int taint; }; -static VALUE r_object _((struct load_arg *arg)); +static VALUE r_object(struct load_arg *arg); static int r_byte(struct load_arg *arg) |