diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-07-22 14:02:09 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-07-22 14:02:09 -0700 |
| commit | 6cd32ee4c28cd19f9b78cfaf8bcdba4ce7b6250a (patch) | |
| tree | ee240fdc9a95ebd132d95bbb8b27de78be82d8d3 /src/gc.c | |
| parent | a9a91c3561ff68d361c7aaf5bfd3379598012c82 (diff) | |
| parent | d61cb77346708754ec0b4625c79841d45f01fff3 (diff) | |
| download | mruby-6cd32ee4c28cd19f9b78cfaf8bcdba4ce7b6250a.tar.gz mruby-6cd32ee4c28cd19f9b78cfaf8bcdba4ce7b6250a.zip | |
Merge pull request #391 from crimsonwoods/android_ndk_support
fix: SIZE_MAX is not defined in "stdint.h"
Diffstat (limited to 'src/gc.c')
| -rw-r--r-- | src/gc.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,10 @@ #include "mruby/data.h" #include "mruby/variable.h" +#ifndef SIZE_MAX +#include <limits.h> // for SIZE_MAX +#endif + /* = Tri-color Incremental Garbage Collection |
