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 /mrbgems | |
| 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 'mrbgems')
| -rw-r--r-- | mrbgems/mruby-numeric-ext/src/numeric_ext.c | 1 | ||||
| -rw-r--r-- | mrbgems/mruby-sprintf/src/sprintf.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/mrbgems/mruby-numeric-ext/src/numeric_ext.c b/mrbgems/mruby-numeric-ext/src/numeric_ext.c index 1e5d5f5d9..09904c1a9 100644 --- a/mrbgems/mruby-numeric-ext/src/numeric_ext.c +++ b/mrbgems/mruby-numeric-ext/src/numeric_ext.c @@ -1,3 +1,4 @@ +#include <limits.h> #include "mruby.h" #include "mruby/numeric.h" diff --git a/mrbgems/mruby-sprintf/src/sprintf.c b/mrbgems/mruby-sprintf/src/sprintf.c index 1b41eb171..9989abf2f 100644 --- a/mrbgems/mruby-sprintf/src/sprintf.c +++ b/mrbgems/mruby-sprintf/src/sprintf.c @@ -6,6 +6,7 @@ #include "mruby.h" +#include <limits.h> #include <stdio.h> #include <string.h> #include "mruby/string.h" |
