diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-28 19:34:15 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-28 19:34:15 -0700 |
| commit | b29b4218171afd8ffe600d0f270b958915fc061f (patch) | |
| tree | 9be935e9d07758b6e5c7ce545c2f968d2bb7b0e5 /tools | |
| parent | 5fb12a990d4d30876ce21e6225acbef35f47b48a (diff) | |
| parent | 74f04849c4d04425e911acbe6bedb2596046f5b0 (diff) | |
| download | mruby-b29b4218171afd8ffe600d0f270b958915fc061f.tar.gz mruby-b29b4218171afd8ffe600d0f270b958915fc061f.zip | |
Merge pull request #1101 from monaka/pr-cleanup-includes
Cleanup includes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mrbc/mrbc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/mrbc/mrbc.c b/tools/mrbc/mrbc.c index e74d4bb80..b8c1cf286 100644 --- a/tools/mrbc/mrbc.c +++ b/tools/mrbc/mrbc.c @@ -1,10 +1,10 @@ -#include "mruby.h" -#include "mruby/proc.h" -#include "mruby/dump.h" -#include "mruby/compile.h" #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> +#include "mruby.h" +#include "mruby/compile.h" +#include "mruby/dump.h" +#include "mruby/proc.h" #define RITEBIN_EXT ".mrb" #define C_EXT ".c" |
