summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-string-ext/src/string.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-01-07 15:32:12 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2014-01-07 15:32:12 -0800
commitb147970bd2e76888a6711fbc2f7de42ca92d55a0 (patch)
treeb2708c1d3bae0dc0ba575079ed2663bbfeb07452 /mrbgems/mruby-string-ext/src/string.c
parentcff4ac6bb7fac7cf72b58a0081d7dacd9c1f492c (diff)
parentaa655b9ee13b2d26de7a633049e20742b7393e52 (diff)
downloadmruby-b147970bd2e76888a6711fbc2f7de42ca92d55a0.tar.gz
mruby-b147970bd2e76888a6711fbc2f7de42ca92d55a0.zip
Merge pull request #1649 from cremno/include-cleanup
remove superfluous includes
Diffstat (limited to 'mrbgems/mruby-string-ext/src/string.c')
-rw-r--r--mrbgems/mruby-string-ext/src/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-string-ext/src/string.c b/mrbgems/mruby-string-ext/src/string.c
index 6718e734a..f194bbc0e 100644
--- a/mrbgems/mruby-string-ext/src/string.c
+++ b/mrbgems/mruby-string-ext/src/string.c
@@ -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)