summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-07-16 21:56:38 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-07-16 21:56:38 +0900
commit6c94b2d9631de69cece082274644381ae0864faa (patch)
tree36a1f635a9721e34262a4c6933b97c2988f1f8e8 /src
parent4f37adfd5e4489da5d6299d15976d983596e0d34 (diff)
parent67e187f0f883789131c596ccc56980c32471bbbf (diff)
downloadmruby-6c94b2d9631de69cece082274644381ae0864faa.tar.gz
mruby-6c94b2d9631de69cece082274644381ae0864faa.zip
Merge pull request #2889 from takkaw/fix_build_cygwin64
64bit Cygwin also doesn't have frexpl(3)
Diffstat (limited to 'src')
-rw-r--r--src/fmt_fp.c2
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