Rename 'jerry_api_' prefix to 'jerry_' in the main-riotos.c file

JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
This commit is contained in:
Robert Sipka 2016-06-09 17:01:02 +02:00
parent 0dd1082d6f
commit 3c83af9f23

View File

@ -26,7 +26,7 @@ int test_jerry (int argc, char **argv)
/* Suppress compiler errors */
(void) argc;
(void) argv;
const jerry_api_char_t script[] = "print ('Hello, World!');";
const jerry_char_t script[] = "print ('Hello, World!');";
printf ("This test run the following script code: [%s]\n\n", script);
size_t script_size = strlen ((const char *) script);