Index: src/backend/utils/adt/float.c =================================================================== RCS file: /cvsroot/pgsql-server/src/backend/utils/adt/float.c,v retrieving revision 1.87 diff -c -c -r1.87 float.c *** src/backend/utils/adt/float.c 9 May 2003 21:19:49 -0000 1.87 --- src/backend/utils/adt/float.c 25 May 2003 05:28:58 -0000 *************** *** 70,93 **** #include "utils/builtins.h" - #if !(NeXT && NX_CURRENT_COMPILER_RELEASE > NX_COMPILER_RELEASE_3_2) - /* NS3.3 has conflicting declarations of these in */ - - #ifndef atof - extern double atof(const char *p); - #endif - #ifndef HAVE_CBRT - #define cbrt my_cbrt static double cbrt(double x); - - #else - #if !defined(nextstep) - extern double cbrt(double x); - #endif #endif /* HAVE_CBRT */ - #endif /* NeXT check */ - #ifndef M_PI /* from my RH5.2 gcc math.h file - thomas 2000-04-03 */ --- 70,78 ---- *************** *** 1983,1989 **** /* ========== PRIVATE ROUTINES ========== */ #ifndef HAVE_CBRT ! static double cbrt(double x) { --- 1968,1974 ---- /* ========== PRIVATE ROUTINES ========== */ #ifndef HAVE_CBRT ! /* I doubt this is still needed by any platform. 2003-05-25 */ static double cbrt(double x) {