summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler/core/codegen.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-11-27 17:48:23 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-11-27 17:48:23 +0900
commit5c405dea3d3e26f62877959c75a50fbaf1ece6a4 (patch)
treec8e3a94720c3f6baf2df44fd12dc1fdd6c302eb9 /mrbgems/mruby-compiler/core/codegen.c
parent2e0519de8991de2a59a0552e95a906cfada3e1e7 (diff)
downloadmruby-5c405dea3d3e26f62877959c75a50fbaf1ece6a4.tar.gz
mruby-5c405dea3d3e26f62877959c75a50fbaf1ece6a4.zip
include changed from by quotes ("") to by brackets (<>); close #3032
Diffstat (limited to 'mrbgems/mruby-compiler/core/codegen.c')
-rw-r--r--mrbgems/mruby-compiler/core/codegen.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/mrbgems/mruby-compiler/core/codegen.c b/mrbgems/mruby-compiler/core/codegen.c
index 7d84dee6e..c56c1550c 100644
--- a/mrbgems/mruby-compiler/core/codegen.c
+++ b/mrbgems/mruby-compiler/core/codegen.c
@@ -8,16 +8,16 @@
#include <limits.h>
#include <stdlib.h>
#include <string.h>
-#include "mruby.h"
-#include "mruby/compile.h"
-#include "mruby/proc.h"
-#include "mruby/numeric.h"
-#include "mruby/string.h"
-#include "mruby/debug.h"
+#include <mruby.h>
+#include <mruby/compile.h>
+#include <mruby/proc.h>
+#include <mruby/numeric.h>
+#include <mruby/string.h>
+#include <mruby/debug.h>
#include "node.h"
-#include "mruby/opcode.h"
-#include "mruby/re.h"
-#include "mruby/throw.h"
+#include <mruby/opcode.h>
+#include <mruby/re.h>
+#include <mruby/throw.h>
typedef mrb_ast_node node;
typedef struct mrb_parser_state parser_state;