diff options
author | Andres Freund <andres@anarazel.de> | 2015-02-04 13:27:31 +0100 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2015-02-04 13:31:40 +0100 |
commit | f0241d648661c6650a32d26df2216ed78ba7953f (patch) | |
tree | 015d79464b7eacc810239f348bfdd79c8bd44c11 /src | |
parent | b5ea07b06d58519c54aa3f15067f9a44d84f6d8e (diff) |
Add missing float.h include to snprintf.c.
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/snprintf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/port/snprintf.c b/src/port/snprintf.c index e655ce35b73..c10a82a2884 100644 --- a/src/port/snprintf.c +++ b/src/port/snprintf.c @@ -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 |