summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/timestamp.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-07-12 22:59:15 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-07-12 22:59:15 +0000
commitcb292206c5c160cde6eb5618de64f810e62f378a (patch)
tree54e4fc4f39a97edad06ae0f8266d87c46a506d06 /src/backend/utils/adt/timestamp.c
parentdce43d22f052f7c9cbbf9535c9e50aaa7e51c1d9 (diff)
Remove a bunch of unused configure tests, in particular cases where
* the result is not recorded anywhere * the result is not used anywhere * the result is only used in some places, whereas others have been getting away with it * the result is used improperly Also make command line options handling a little better (e.g., --disable-locale, while redundant, should really still *dis*able).
Diffstat (limited to 'src/backend/utils/adt/timestamp.c')
-rw-r--r--src/backend/utils/adt/timestamp.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/backend/utils/adt/timestamp.c b/src/backend/utils/adt/timestamp.c
index d5d5b86f9fe..b4736dd6ae8 100644
--- a/src/backend/utils/adt/timestamp.c
+++ b/src/backend/utils/adt/timestamp.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.32 2000/07/05 23:11:35 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.33 2000/07/12 22:59:09 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,12 +19,9 @@
#include <math.h>
#include <errno.h>
#include <sys/types.h>
-#ifdef HAVE_FLOAT_H
#include <float.h>
-#endif
-#ifdef HAVE_LIMITS_H
#include <limits.h>
-#endif
+
#ifndef USE_POSIX_TIME
#include <sys/timeb.h>
#endif