diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-27 17:48:23 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-11-27 17:48:23 +0900 |
| commit | 5c405dea3d3e26f62877959c75a50fbaf1ece6a4 (patch) | |
| tree | c8e3a94720c3f6baf2df44fd12dc1fdd6c302eb9 /mrbgems/mruby-random | |
| parent | 2e0519de8991de2a59a0552e95a906cfada3e1e7 (diff) | |
| download | mruby-5c405dea3d3e26f62877959c75a50fbaf1ece6a4.tar.gz mruby-5c405dea3d3e26f62877959c75a50fbaf1ece6a4.zip | |
include changed from by quotes ("") to by brackets (<>); close #3032
Diffstat (limited to 'mrbgems/mruby-random')
| -rw-r--r-- | mrbgems/mruby-random/src/mt19937ar.c | 2 | ||||
| -rw-r--r-- | mrbgems/mruby-random/src/random.c | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/mrbgems/mruby-random/src/mt19937ar.c b/mrbgems/mruby-random/src/mt19937ar.c index 310a276fa..4013ad30b 100644 --- a/mrbgems/mruby-random/src/mt19937ar.c +++ b/mrbgems/mruby-random/src/mt19937ar.c @@ -4,7 +4,7 @@ ** See Copyright Notice in mruby.h */ -#include "mruby.h" +#include <mruby.h> #include "mt19937ar.h" /* Period parameters */ diff --git a/mrbgems/mruby-random/src/random.c b/mrbgems/mruby-random/src/random.c index 3be3ac81c..040d83ed6 100644 --- a/mrbgems/mruby-random/src/random.c +++ b/mrbgems/mruby-random/src/random.c @@ -4,11 +4,11 @@ ** See Copyright Notice in mruby.h */ -#include "mruby.h" -#include "mruby/variable.h" -#include "mruby/class.h" -#include "mruby/data.h" -#include "mruby/array.h" +#include <mruby.h> +#include <mruby/variable.h> +#include <mruby/class.h> +#include <mruby/data.h> +#include <mruby/array.h> #include "mt19937ar.h" #include <time.h> |
