Remove UXPDS support

This commit is contained in:
chase
2018-05-15 20:11:08 -05:00
committed by Jon Trulson
parent 0f8233dadd
commit 8a4f389634
319 changed files with 317 additions and 8776 deletions

View File

@@ -25,10 +25,6 @@ SYS_LIBRARIES = -lintl -lm -ldl
SYS_LIBRARIES = -lm -lgen
#endif
#if defined (UXPArchitecture)
SYS_LIBRARIES = -lm -lgen
#endif
#if defined(HPOSFArchitecture)
#endif

View File

@@ -1734,13 +1734,13 @@ do_round(double result, int ndigits)
if (!temp)
return (temp > 0) ? HUGE : -HUGE;
#else
#if defined(USL) || defined(__uxp__)
#if defined(USL)
temp = finite(result);
if (!temp)
return (temp > 0) ? HUGE : -HUGE;
#else
if ((temp = isinf(result))) return (temp > 0) ? HUGE : -HUGE;
#endif /* USL or __uxp__ */
#endif /* USL */
#endif /* _AIX or __osf__ */
if (ndigits >= 0 && ndigits < MAX_DIGITS)
@@ -1853,7 +1853,7 @@ try_compute_i(double guess, double *result, int method)
if (!(!isnan(new_w) && finite(new_w)))
return FALSE;
#else
#if defined(USL) || defined(__uxp__)
#if defined(USL)
if (!(!isnan(new_w) && finite(new_w)))
return FALSE;
#else