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_tgamma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libm/w_tgamma.c') diff --git a/libm/w_tgamma.c b/libm/w_tgamma.c index 0449e16d8..abfb119bd 100644 --- a/libm/w_tgamma.c +++ b/libm/w_tgamma.c @@ -35,7 +35,7 @@ libm_hidden_proto(signgam) #else if(_LIB_VERSION == _IEEE_) return y; - if(!finite(y)&&finite(x)) { + if(!isfinite(y)&&isfinite(x)) { if(floor(x)==x&&x<=0.0) return __kernel_standard(x,x,41); /* tgamma pole */ else -- cgit v1.2.3