Commit 0e218f53 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2746 from tarosay/tarosa

I modified the undefined frexpl in cygwin of make
parents f32393a8 52f35b83
...@@ -90,6 +90,14 @@ fmt_u(uint32_t x, char *s) ...@@ -90,6 +90,14 @@ fmt_u(uint32_t x, char *s)
typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)]; typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)];
#endif #endif
#ifdef __CYGWIN32__
static long double
frexpl (long double x, int *eptr)
{
return frexp(x, eptr);
}
#endif
static int static int
fmt_fp(struct fmt_args *f, long double y, int w, int p, int fl, int t) fmt_fp(struct fmt_args *f, long double y, int w, int p, int fl, int t)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment