From 5c405dea3d3e26f62877959c75a50fbaf1ece6a4 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 27 Nov 2015 17:48:23 +0900 Subject: include changed from by quotes ("") to by brackets (<>); close #3032 --- mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c | 14 +++++++------- mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c | 6 +++--- mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c | 12 ++++++------ mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c | 8 ++++---- mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c | 12 ++++++------ mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c | 12 ++++++------ mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h | 2 +- 12 files changed, 38 insertions(+), 38 deletions(-) (limited to 'mrbgems/mruby-bin-debugger/tools') diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c b/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c index 378c773ea..986c69d82 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c @@ -4,14 +4,14 @@ */ #include -#include "mruby.h" -#include "mruby/irep.h" +#include +#include #include "mrdb.h" -#include "mruby/debug.h" -#include "mruby/opcode.h" -#include "mruby/class.h" -#include "mruby/proc.h" -#include "mruby/variable.h" +#include +#include +#include +#include +#include #include "mrdberror.h" #include "apibreak.h" diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h b/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h index 8bb39cb50..3c7e41e52 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h @@ -6,7 +6,7 @@ #ifndef APIBREAK_H_ #define APIBREAK_H_ -#include "mruby.h" +#include #include "mrdb.h" int32_t mrb_debug_set_break_line( mrb_state *, mrb_debug_context *, const char *, uint16_t ); diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c b/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c index 03846cd50..1c77d1ef8 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c @@ -9,9 +9,9 @@ #include "mrdb.h" #include "mrdberror.h" #include "apilist.h" -#include "mruby/compile.h" -#include "mruby/irep.h" -#include "mruby/debug.h" +#include +#include +#include #define LINE_BUF_SIZE MAX_COMMAND_LINE diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h b/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h index 4580b2350..6c4107885 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h @@ -5,7 +5,7 @@ #ifndef APILIST_H_ #define APILIST_H_ -#include "mruby.h" +#include #include "mrdb.h" int32_t mrb_debug_list(mrb_state *, mrb_debug_context *, char *, uint16_t, uint16_t); diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c b/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c index 2c93eb4ee..a9c895b55 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c @@ -5,12 +5,12 @@ #include #include "mrdb.h" -#include "mruby/value.h" -#include "mruby/class.h" -#include "mruby/compile.h" -#include "mruby/error.h" -#include "mruby/numeric.h" -#include "mruby/string.h" +#include +#include +#include +#include +#include +#include #include "apiprint.h" static void diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h b/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h index 81d685e0c..e256f6262 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h @@ -5,7 +5,7 @@ #ifndef APIPRINT_H_ #define APIPRINT_H_ -#include "mruby.h" +#include #include "mrdb.h" mrb_value mrb_debug_eval(mrb_state*, mrb_debug_context*, const char*, size_t, mrb_bool*); diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c index b913915c3..57c1d5682 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c @@ -5,10 +5,10 @@ #include #include -#include "mruby.h" -#include "mruby/dump.h" -#include "mruby/debug.h" -#include "mruby/string.h" +#include +#include +#include +#include #include "mrdb.h" #include "mrdberror.h" #include "apibreak.h" diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c index f52514851..b4aeb62d4 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c @@ -8,7 +8,7 @@ #include #include "apilist.h" -#include "mruby/compile.h" +#include typedef struct help_msg { const char *cmd1; diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c index a617aff13..cca636711 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c @@ -5,12 +5,12 @@ #include #include "mrdb.h" -#include "mruby/value.h" -#include "mruby/class.h" -#include "mruby/compile.h" -#include "mruby/error.h" -#include "mruby/numeric.h" -#include "mruby/string.h" +#include +#include +#include +#include +#include +#include #include "apiprint.h" dbgcmd_state diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c index 8d8340560..7e0f171e4 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c @@ -3,7 +3,7 @@ ** */ -#include "mruby/opcode.h" +#include #include "mrdb.h" dbgcmd_state diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c index 3e43fdb4a..317547d86 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c @@ -8,12 +8,12 @@ #include #include -#include "mruby.h" -#include "mruby/dump.h" -#include "mruby/debug.h" -#include "mruby/class.h" -#include "mruby/opcode.h" -#include "mruby/variable.h" +#include +#include +#include +#include +#include +#include #include "mrdb.h" #include "apibreak.h" diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h index 9e92ce879..5d897170a 100755 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h @@ -6,7 +6,7 @@ #ifndef MRDB_H #define MRDB_H -#include "mruby.h" +#include #include "mrdbconf.h" -- cgit v1.2.3