]> granicus.if.org Git - postgresql/commitdiff
Add missing float.h include to snprintf.c.
authorAndres Freund <andres@anarazel.de>
Wed, 4 Feb 2015 12:27:31 +0000 (13:27 +0100)
committerAndres Freund <andres@anarazel.de>
Wed, 4 Feb 2015 12:31:53 +0000 (13:31 +0100)
On windows _isnan() (which isnan() is redirected to in port/win32.h)
is declared in float.h, not math.h.

Per buildfarm animal currawong.

Backpatch to all supported branches.

src/port/snprintf.c

index a07c7c9e0246fc502a10a5b82bc2d9e7bea04a73..5c03ea6fd2e475abe8660ff35a32aa5d528d4278 100644 (file)
@@ -33,6 +33,9 @@
 #include "c.h"
 
 #include <ctype.h>
+#ifdef _MSC_VER
+#include <float.h>                             /* for _isnan */
+#endif
 #include <limits.h>
 #include <math.h>
 #ifndef WIN32