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 /src/class.c | |
| 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 'src/class.c')
| -rw-r--r-- | src/class.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/class.c b/src/class.c index 030d018bc..9dc7b46d6 100644 --- a/src/class.c +++ b/src/class.c @@ -7,13 +7,12 @@ #include "mruby.h" #include <stdarg.h> #include <ctype.h> -#include <string.h> +#include "mruby/array.h" #include "mruby/class.h" +#include "mruby/numeric.h" #include "mruby/proc.h" #include "mruby/string.h" -#include "mruby/numeric.h" #include "mruby/variable.h" -#include "mruby/array.h" #include "error.h" KHASH_DEFINE(mt, mrb_sym, struct RProc*, 1, kh_int_hash_func, kh_int_hash_equal) |
