Silence compiler warning on Windows.

David Rowley.
This commit is contained in:
Heikki Linnakangas 2014-09-11 13:50:14 +03:00
parent 54a2d5b37b
commit 0ed41529f6
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@
#include "postgres.h"
#include <ctype.h>
#ifdef _MSC_VER
#include <float.h> /* for _isnan */
#endif
#include <math.h>
#include "access/htup_details.h"