diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-30 16:38:39 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-30 16:38:39 +0000 |
commit | bb6a78829e96eada7242e748e0ca1348b27b3413 (patch) | |
tree | ce165e3044eab3885be1b15b3ce10ca187a29353 /src | |
parent | 1817706fbabde7ab0369564f054527e29e9be2b8 (diff) | |
download | postgresql-bb6a78829e96eada7242e748e0ca1348b27b3413.tar.gz postgresql-bb6a78829e96eada7242e748e0ca1348b27b3413.zip |
isinf.c needs <float.h> on some platforms, per Darcy Buskermolen.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/isinf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/isinf.c b/src/port/isinf.c index 07b2bd9a149..ec10375578a 100644 --- a/src/port/isinf.c +++ b/src/port/isinf.c @@ -7,13 +7,14 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/isinf.c,v 1.4 2004/08/29 04:13:12 momjian Exp $ + * $PostgreSQL: pgsql/src/port/isinf.c,v 1.5 2004/09/30 16:38:39 tgl Exp $ * *------------------------------------------------------------------------- */ #include "c.h" +#include <float.h> #include <math.h> #if HAVE_FPCLASS /* this is _not_ HAVE_FP_CLASS, and not |