mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Declaring with a prototype
In C99, a function declaration with an empty argument list means "no information about the arguments", not "it takes no arguments" - the so-called old K&R style.
This commit is contained in:
parent
d77e02bd85
commit
f11daeb625
1 changed files with 1 additions and 1 deletions
2
yjit.h
2
yjit.h
|
@ -37,7 +37,7 @@ void rb_yjit_collect_binding_alloc(void);
|
|||
void rb_yjit_collect_binding_set(void);
|
||||
void rb_yjit_compile_iseq(const rb_iseq_t *iseq, rb_execution_context_t *ec, bool jit_exception);
|
||||
void rb_yjit_init(bool yjit_enabled);
|
||||
void rb_yjit_free_at_exit();
|
||||
void rb_yjit_free_at_exit(void);
|
||||
void rb_yjit_bop_redefined(int redefined_flag, enum ruby_basic_operators bop);
|
||||
void rb_yjit_constant_state_changed(ID id);
|
||||
void rb_yjit_iseq_mark(void *payload);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue