Renaming jerry_* identifiers from 'camelCase' to 'underscore_naming'.

This commit is contained in:
Ruben Ayrapetyan
2014-07-23 13:03:30 +04:00
parent c0df259726
commit 79f3d97434
8 changed files with 28 additions and 28 deletions
+2 -2
View File
@@ -1815,10 +1815,10 @@ parser_init (void)
}
void
parser_fatal (jerry_Status_t code)
parser_fatal (jerry_status_t code)
{
__printf ("FATAL: %d\n", code);
lexer_dump_buffer_state ();
jerry_Exit( code);
jerry_exit( code);
}