Re: [5/5] libport: Add msvc isnan and isinf implementations
23 Aug
2010
23 Aug
'10
11:41 a.m.
Stefan Dösinger <stefan(a)codeweavers.com> writes:
@@ -31,6 +31,14 @@ int isinf(double x) return (!(finite(x) || isnand(x))); }
+#elif defined(HAVE_FLOAT_H) && defined(_MSC_VER) +#include <float.h>
You should use proper configure checks instead of _MSC_VER, like we do for other similar cases. -- Alexandre Julliard julliard(a)winehq.org
5594
Age (days ago)
5594
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard