diff options
author | Tom Lane | 2004-09-30 16:38:39 +0000 |
---|---|---|
committer | Tom Lane | 2004-09-30 16:38:39 +0000 |
commit | 8f163cb6549be68a1cd141de0cf62d8aa54ea946 (patch) | |
tree | 1625e5575799705fb8f1e6de945bbf3edf2ddb63 | |
parent | 22d3ccb7e0b66983b4b0ccff6e53584b0030db3b (diff) |
isinf.c needs <float.h> on some platforms, per Darcy Buskermolen.
-rw-r--r-- | src/port/isinf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/port/isinf.c b/src/port/isinf.c index 427be79d29..57b6b35881 100644 --- a/src/port/isinf.c +++ b/src/port/isinf.c @@ -14,6 +14,7 @@ #include "c.h" +#include <float.h> #include <math.h> #if HAVE_FPCLASS /* this is _not_ HAVE_FP_CLASS, and not |