diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-01-13 19:28:39 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-01-13 19:28:39 +0000 |
commit | 8adc838ff65e540df1902b7c326ee4a689a672f4 (patch) | |
tree | c24441b56ff14f10a2a59db018f48a372df66132 /src/backend/utils/adt/float.c | |
parent | 434165295a4c512c64f12f0e4b6f84d352e4159f (diff) | |
download | postgresql-8adc838ff65e540df1902b7c326ee4a689a672f4.tar.gz postgresql-8adc838ff65e540df1902b7c326ee4a689a672f4.zip |
Various cleanups for the i386_solaris environment
Diffstat (limited to 'src/backend/utils/adt/float.c')
-rw-r--r-- | src/backend/utils/adt/float.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c index 022e1557fce..a157c992c3f 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.26 1998/01/05 16:39:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.27 1998/01/13 19:28:32 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -105,16 +105,9 @@ extern double rint(double x); #endif -#ifndef HAVE_ISINF -#define isinf my_isinf -static int isinf(double x); - -#else extern int isinf(double x); #endif - -#endif /* ========== USER I/O ROUTINES ========== */ |