From a0ebeb988d63d94da086b72daf0691f67584724a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 22 Dec 2008 11:31:12 +0000 Subject: - fix fpclassify, signbit, isfinite, isnan, isinf macros for long double math support - add rule to create preprocessor output for float- and long double math wrapper --- libm/w_hypot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libm/w_hypot.c') diff --git a/libm/w_hypot.c b/libm/w_hypot.c index 9ed348e3e..a6abb8032 100644 --- a/libm/w_hypot.c +++ b/libm/w_hypot.c @@ -34,7 +34,7 @@ static char rcsid[] = "$NetBSD: w_hypot.c,v 1.6 1995/05/10 20:49:07 jtc Exp $"; double z; z = __ieee754_hypot(x,y); if(_LIB_VERSION == _IEEE_) return z; - if((!finite(z))&&finite(x)&&finite(y)) + if((!isfinite(z))&&isfinite(x)&&isfinite(y)) return __kernel_standard(x,y,4); /* hypot overflow */ else return z; -- cgit v1.2.3