aboutsummaryrefslogtreecommitdiffstats
path: root/eval_jump.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-05-07 00:04:36 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-05-07 00:04:36 +0900
commit0bbab1e5151c3396ebe544d09cad997cd9cb5e3b (patch)
tree9ca2db82ab1b42c3902733d640228bb8eeb5f638 /eval_jump.c
parent99644514db3768e4fd47d6ff9111091ab1a5a6d2 (diff)
downloadruby-0bbab1e5151c3396ebe544d09cad997cd9cb5e3b.tar.gz
Protoized old pre-ANSI K&R style declarations and definitions
Diffstat (limited to 'eval_jump.c')
-rw-r--r--eval_jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval_jump.c b/eval_jump.c
index 75d4ad0207..2ea73b0da3 100644
--- a/eval_jump.c
+++ b/eval_jump.c
@@ -48,7 +48,7 @@ rb_f_at_exit(VALUE _)
}
struct end_proc_data {
- void (*func) ();
+ void (*func) (VALUE);
VALUE data;
struct end_proc_data *next;
};