Fix warnings
This commit is contained in:
@@ -46,7 +46,7 @@ gen_bytecode ()
|
||||
}
|
||||
|
||||
void
|
||||
init_int ()
|
||||
init_int (void)
|
||||
{
|
||||
#define INIT_OP_FUNC(name) __opfuncs[ name ] = opfunc_##name ;
|
||||
JERRY_STATIC_ASSERT (sizeof (OPCODE) <= 4);
|
||||
@@ -55,7 +55,7 @@ init_int ()
|
||||
}
|
||||
|
||||
void
|
||||
run_int ()
|
||||
run_int (void)
|
||||
{
|
||||
init_int ();
|
||||
|
||||
|
||||
@@ -38,6 +38,7 @@ struct __int_data
|
||||
};
|
||||
|
||||
void gen_bytecode (void);
|
||||
void init_int (void);
|
||||
void run_int (void);
|
||||
void run_int_from_pos (struct __int_data *);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user