Fix warnings

This commit is contained in:
Ilmir Usmanov
2014-07-10 11:01:40 +04:00
parent 74a0f470d2
commit 2d4b325d24
12 changed files with 162 additions and 152 deletions
+2 -2
View File
@@ -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 ();
+1
View File
@@ -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 *);