summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authortakkaw <[email protected]>2015-07-16 18:40:07 +0900
committertakkaw <[email protected]>2015-07-16 18:40:07 +0900
commit67e187f0f883789131c596ccc56980c32471bbbf (patch)
tree70eb83883e699f330566732a558a1e30e3ec8453 /src
parent207577f0af72874d9d643f2c46b881a9159d42d7 (diff)
downloadmruby-67e187f0f883789131c596ccc56980c32471bbbf.tar.gz
mruby-67e187f0f883789131c596ccc56980c32471bbbf.zip
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