summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2013-09-02 00:17:26 +0900
committertake_cheeze <[email protected]>2013-09-02 00:48:07 +0900
commitbd5afe9eef3be19c3cf9612388d0ba0227144683 (patch)
tree24a067bc71d0c9ae0d636288b964fd6bd4c6d227 /include
parent0b806ca17ba1a9dc6b5863050090a74e51236745 (diff)
downloadmruby-bd5afe9eef3be19c3cf9612388d0ba0227144683.tar.gz
mruby-bd5afe9eef3be19c3cf9612388d0ba0227144683.zip
rename debug function name
Diffstat (limited to 'include')
-rw-r--r--include/mruby/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby/debug.h b/include/mruby/debug.h
index 0f60c9c84..9b84719c4 100644
--- a/include/mruby/debug.h
+++ b/include/mruby/debug.h
@@ -40,13 +40,13 @@ struct mrb_state;
* get line from irep's debug info and program counter
* @return returns NULL if not found
*/
-char const* mrb_get_filename(struct mrb_irep* irep, uint32_t pc);
+char const* mrb_debug_get_filename(struct mrb_irep* irep, uint32_t pc);
/*
* get line from irep's debug info and program counter
* @return returns -1 if not found
*/
-int32_t mrb_get_line(struct mrb_irep* irep, uint32_t pc);
+int32_t mrb_debug_get_line(struct mrb_irep* irep, uint32_t pc);
mrb_irep_debug_info_file* mrb_debug_info_append_file(
struct mrb_state* mrb, struct mrb_irep* irep,