summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-26 00:40:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-26 00:40:28 +0000
commit39ffe42db6871581f6e44951319e71434b99e4a3 (patch)
treec6e665d982fc4695dd7b3ac74761e33ecc50fef6 /intern.h
parent449ed9836b65dc942d380badd664507bbcd6baaf (diff)
downloadruby-39ffe42db6871581f6e44951319e71434b99e4a3.tar.gz
ruby-39ffe42db6871581f6e44951319e71434b99e4a3.tar.xz
ruby-39ffe42db6871581f6e44951319e71434b99e4a3.zip
ANSI C requires a named argument before `...'
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern.h b/intern.h
index 86c3c2447..cf3f62878 100644
--- a/intern.h
+++ b/intern.h
@@ -164,7 +164,7 @@ VALUE rb_f_require _((VALUE, VALUE));
void rb_obj_call_init _((VALUE, int, VALUE*));
VALUE rb_class_new_instance _((int, VALUE*, VALUE));
VALUE rb_f_lambda _((void));
-VALUE rb_proc_new _((VALUE (*)(.../* VALUE yieldarg[, VALUE procarg] */), VALUE));
+VALUE rb_proc_new _((VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE));
VALUE rb_protect _((VALUE (*)(VALUE), VALUE, int*));
void rb_set_end_proc _((void (*)(VALUE), VALUE));
void rb_mark_end_proc _((void));