summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-05-07 23:41:46 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-05-07 23:41:46 +0900
commitd9e37bd7292b19d1111b103c5e9c6b5fac88130e (patch)
tree6f5f3057e2af76ff28493cba276d09b1f172ebfb /src
parent2fe556d9c039839c20965a2c90dff703f04e40ec (diff)
parent5e5e1290141a56b6765df5c19b13c60320c480bd (diff)
downloadmruby-d9e37bd7292b19d1111b103c5e9c6b5fac88130e.tar.gz
mruby-d9e37bd7292b19d1111b103c5e9c6b5fac88130e.zip
Merge pull request #2783 from pbosetti/master
Defining static version of frexpl also fro MIPS platforms.
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 9b29093a8..9aeae642c 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
-#ifdef __CYGWIN32__
+#if defined(__CYGWIN32__) || defined(mips)
static long double
frexpl (long double x, int *eptr)
{