Merge pull request #2594 from baruchsiach/fix-math-2

Don't disable C99 long double math on non Unix platforms
This commit is contained in:
Bernhard Miklautz 2015-05-08 13:44:26 +02:00
commit d4df3a952b
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ typedef void * trio_pointer_t;
# define TRIO_COMPILER_SUPPORTS_LL
#endif
#if !defined(HAVE_MATH_C99_LONG_DOUBLE)
#if defined(TRIO_PLATFORM_UNIX) && !defined(HAVE_MATH_C99_LONG_DOUBLE)
# define TRIO_NO_FLOORL 1
# define TRIO_NO_CEILL 1
# define TRIO_NO_POWL 1