1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Remove QNX port.

This commit is contained in:
Bruce Momjian
2006-01-05 01:56:30 +00:00
parent 349f40b2c2
commit a1675649e4
31 changed files with 25 additions and 2014 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/isinf.c,v 1.7 2005/10/15 02:49:51 momjian Exp $
* $PostgreSQL: pgsql/src/port/isinf.c,v 1.8 2006/01/05 01:56:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -74,18 +74,3 @@ isinf(double x)
}
#endif
#endif
#ifdef __QNX__
#include <float.h>
int
isinf(double x)
{
if (x == HUGE_VAL)
return 1;
if (x == -HUGE_VAL)
return -1;
return 0;
}
#endif