]> granicus.if.org Git - postgresql/commitdiff
needs float.h for DBL_MIN under FreeBSD
authorMarc G. Fournier <scrappy@hub.org>
Fri, 4 Apr 1997 08:53:08 +0000 (08:53 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Fri, 4 Apr 1997 08:53:08 +0000 (08:53 +0000)
src/backend/utils/adt/date.c

index 3f6d192424b28daa0acbf3fa63b4b102970b5635..36d3d28a76ab5ef723a5ebb2ecccb7c2c0104053 100644 (file)
@@ -9,7 +9,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.7 1997/04/02 18:33:09 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.8 1997/04/04 08:53:08 scrappy Exp $
  *
  * NOTES
  *   This code is actually (almost) unused.
@@ -32,6 +32,9 @@
 
 #include "postgres.h"
 #include "miscadmin.h"
+#ifdef HAVE_FLOAT_H
+# include <float.h>
+#endif
 #ifdef HAVE_LIMITS_H
 # include <limits.h>
 #endif