Commit 37348c29 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1728 from kyab/fix_unused_error_mirb

Fix unused function warning when readline enabled (mirb)
parents 46ee8835 1cf619d3
......@@ -218,6 +218,7 @@ print_hint(void)
printf("mirb - Embeddable Interactive Ruby Shell\n\n");
}
#ifndef ENABLE_READLINE
/* Print the command line prompt of the REPL */
static void
print_cmdline(int code_block_open)
......@@ -229,6 +230,7 @@ print_cmdline(int code_block_open)
printf("> ");
}
}
#endif
void mrb_codedump_all(mrb_state*, struct RProc*);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment