From 5e5e1290141a56b6765df5c19b13c60320c480bd Mon Sep 17 00:00:00 2001 From: Paolo Bosetti Date: Thu, 7 May 2015 13:05:25 +0200 Subject: Defining static version of frexpl also fro MIPS platforms. On MIPS/linaro, libm.so lacks frexpl() as CygWin does. --- src/fmt_fp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3