diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-05-07 00:04:36 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-05-07 00:04:36 +0900 |
commit | 0bbab1e5151c3396ebe544d09cad997cd9cb5e3b (patch) | |
tree | 9ca2db82ab1b42c3902733d640228bb8eeb5f638 /eval_jump.c | |
parent | 99644514db3768e4fd47d6ff9111091ab1a5a6d2 (diff) |
Protoized old pre-ANSI K&R style declarations and definitions
Diffstat (limited to 'eval_jump.c')
-rw-r--r-- | eval_jump.c | 2 |
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; }; |