We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cddd68e commit a9049a4Copy full SHA for a9049a4
src/backend/utils/adt/dt.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.4 1997/03/16 05:12:08 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.5 1997/03/16 05:32:03 scrappy Exp $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -16,10 +16,14 @@
16
#include <math.h>
17
#include <string.h>
18
#include <sys/types.h>
19
+#include <errno.h>
20
#ifdef HAVE_VALUES_H
-#include <values.h>
21
+# include <values.h>
22
#else
-#include <limits.h>
23
+# include <float.h>
24
+# ifndef MINDOUBLE
25
+# define MINDOUBLE DBL_MIN
26
+# endif
27
#endif
28
29
#include "postgres.h"
0 commit comments