* call_cfunc.ci: protoized.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-06-05 04:27:45 +00:00
parent 99d65b14b4
commit 3d3e46d4c7
2 changed files with 4 additions and 6 deletions

View File

@ -1,9 +1,11 @@
Tue Jun 5 13:26:36 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
Tue Jun 5 13:29:12 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c, dir.c, eval.c, eval_jump.h, eval_method.h, numeric.c,
pack.c, parse.y, re.c, thread.c, vm.c, vm_dump.c, call_cfunc.ci,
thread_pthread.ci, thread_win32.ci: fixed indentation.
* call_cfunc.ci: protoized.
Tue Jun 5 13:17:11 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* call_cfunc.ci, compile.c, dir.c, eval.c, eval_jump.h, numeric.c,

View File

@ -3,11 +3,7 @@
/* from ruby1.9/eval.c */
static inline VALUE
call_cfunc(func, recv, len, argc, argv)
VALUE (*func) ();
VALUE recv;
int len, argc;
const VALUE *argv;
call_cfunc(VALUE (*func) (), VALUE recv, int len, int argc const VALUE *argv)
{
/* printf("len: %d, argc: %d\n", len, argc); */