aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/float.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-27 07:32:33 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-27 07:32:33 +0000
commit321b8c80fd192c1528eb95446aca0a9319aab278 (patch)
tree618beeb2b56e4cb797c14ae5e56f89c498071c24 /src/backend/utils/adt/float.c
parente733befeed1eded642d622a523e758831839bcf8 (diff)
downloadpostgresql-321b8c80fd192c1528eb95446aca0a9319aab278.tar.gz
postgresql-321b8c80fd192c1528eb95446aca0a9319aab278.zip
At this rate, maybe next year sometime I'll get this done...
Goals: reduce the difficulty of porting from platform to platform, release to release, but moving as much as possible into config.h
Diffstat (limited to 'src/backend/utils/adt/float.c')
-rw-r--r--src/backend/utils/adt/float.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c
index 82caf28c8f4..4aed32a6b64 100644
--- a/src/backend/utils/adt/float.c
+++ b/src/backend/utils/adt/float.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.3 1996/08/19 13:52:35 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.4 1996/08/27 07:32:33 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1275,7 +1275,9 @@ static int isinf(x)
}
#endif /* PORTNAME_alpha */
-#if defined(PORTNAME_sparc_solaris)||defined(PORTNAME_i386_solaris) || defined(PORTNAME_svr4)
+#if defined(sparc_solaris) ||
+ defined(i386_solaris) ||
+ defined(PORTNAME_svr4)
#include <ieeefp.h>
static int
isinf(d)