1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Portability patches for HPUX 11 and Unixware in configure

and related files.  Also remove float.c's gratuitous redeclaration of
isinf() ... looks like there are more decls in there that ought to be
in config.h, but I'll leave well enough alone for now ...
This commit is contained in:
Tom Lane
1999-04-20 00:26:32 +00:00
parent 6eccfbc727
commit d30e2ac306
5 changed files with 160 additions and 166 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.40 1999/02/13 23:19:14 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.41 1999/04/20 00:26:32 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -74,10 +74,6 @@
#define SHRT_MIN (-32768)
#endif
#ifndef NAN
#define NAN (0.0/0.0)
#endif
#define FORMAT 'g' /* use "g" output format as standard
* format */
/* not sure what the following should be, but better to make it over-sufficient */
@ -112,9 +108,8 @@ extern double rint(double x);
#endif
extern int isinf(double x);
#endif
/* ========== USER I/O ROUTINES ========== */