diff options
| author | takkaw <[email protected]> | 2015-07-16 18:40:07 +0900 |
|---|---|---|
| committer | takkaw <[email protected]> | 2015-07-16 18:40:07 +0900 |
| commit | 67e187f0f883789131c596ccc56980c32471bbbf (patch) | |
| tree | 70eb83883e699f330566732a558a1e30e3ec8453 /src | |
| parent | 207577f0af72874d9d643f2c46b881a9159d42d7 (diff) | |
| download | mruby-67e187f0f883789131c596ccc56980c32471bbbf.tar.gz mruby-67e187f0f883789131c596ccc56980c32471bbbf.zip | |
64bit Cygwin also doesn't have frexpl(3)
Diffstat (limited to 'src')
| -rw-r--r-- | src/fmt_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fmt_fp.c b/src/fmt_fp.c index b467435a3..b27ebd6e9 100644 --- a/src/fmt_fp.c +++ b/src/fmt_fp.c @@ -90,7 +90,7 @@ fmt_u(uint32_t x, char *s) typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)]; #endif -#if ((defined(__CYGWIN32__) || defined(__NetBSD__) || defined(mips)) && !defined(__linux__)) || defined(__android__) +#if ((defined(__CYGWIN__) || defined(__NetBSD__) || defined(mips)) && !defined(__linux__)) || defined(__android__) #undef frexpl #define frexpl frexp #endif |
