remove superfluous includes

- reduce compile time by a little bit (full-core: ~0.7s for me)
- thanks to 'include-what-you-use' for some help
- include Standard C header files before any other (coding style)
This commit is contained in:
cremno
2014-01-07 17:56:30 +01:00
parent cff4ac6bb7
commit aa655b9ee1
23 changed files with 33 additions and 58 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#include "mruby.h"
#include "mruby/string.h"
#include <ctype.h>
#include <string.h>
#include "mruby.h"
#include "mruby/string.h"
static mrb_value
mrb_str_getbyte(mrb_state *mrb, mrb_value str)