diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-12-26 00:04:24 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-12-26 00:04:24 +0900 |
| commit | 6e09abceaf8a05a66ad62b180924dbaa2b0bc2ab (patch) | |
| tree | 6dcb3c1ea6afa9d955c2913ac22f50979d6881ca | |
| parent | a060bd51145c0db3e64bdc494307621024dae3ed (diff) | |
| parent | f0205e11826242c0b050c7eee1c5a71b06670172 (diff) | |
| download | mruby-6e09abceaf8a05a66ad62b180924dbaa2b0bc2ab.tar.gz mruby-6e09abceaf8a05a66ad62b180924dbaa2b0bc2ab.zip | |
Merge pull request #3058 from mattn/fix-include-blocker
rename include blocker
| -rw-r--r-- | mrbgems/mruby-compiler/core/node.h | 6 | ||||
| -rw-r--r-- | mrbgems/mruby-random/src/random.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mrbgems/mruby-compiler/core/node.h b/mrbgems/mruby-compiler/core/node.h index 532a8323a..4f3669aca 100644 --- a/mrbgems/mruby-compiler/core/node.h +++ b/mrbgems/mruby-compiler/core/node.h @@ -4,8 +4,8 @@ ** See Copyright Notice in mruby.h */ -#ifndef NODE_H -#define NODE_H +#ifndef MRUBY_COMPILER_NODE_H +#define MRUBY_COMPILER_NODE_H enum node_type { NODE_METHOD, @@ -114,4 +114,4 @@ enum node_type { NODE_LAST }; -#endif /* NODE_H */ +#endif /* MRUBY_COMPILER_NODE_H */ diff --git a/mrbgems/mruby-random/src/random.h b/mrbgems/mruby-random/src/random.h index af82d66ac..a4785ae5a 100644 --- a/mrbgems/mruby-random/src/random.h +++ b/mrbgems/mruby-random/src/random.h @@ -4,8 +4,8 @@ ** See Copyright Notice in mruby.h */ -#ifndef RANDOM_H -#define RANDOM_H +#ifndef MRUBY_RANDOM_H +#define MRUBY_RANDOM_H void mrb_mruby_random_gem_init(mrb_state *mrb); |
