From 8195aff714f2ea5d680a5129a1d54af388e90355 Mon Sep 17 00:00:00 2001 From: Matthew Green Date: Sun, 3 Feb 2002 09:24:18 +0000 Subject: * implement a new `struct _reent' that is significantly smaller. use this if _REENT_SMALL is defined in config.h. define this for xstormy16. --- newlib/libm/math/w_lgamma.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newlib/libm/math/w_lgamma.c') diff --git a/newlib/libm/math/w_lgamma.c b/newlib/libm/math/w_lgamma.c index 1dc63994f..e56e47767 100644 --- a/newlib/libm/math/w_lgamma.c +++ b/newlib/libm/math/w_lgamma.c @@ -32,11 +32,11 @@ #endif { #ifdef _IEEE_LIBM - return __ieee754_lgamma_r(x,&(_REENT->_new._reent._gamma_signgam)); + return __ieee754_lgamma_r(x,&(_REENT_SIGNGAM(_REENT))); #else double y; struct exception exc; - y = __ieee754_lgamma_r(x,&(_REENT->_new._reent._gamma_signgam)); + y = __ieee754_lgamma_r(x,&(_REENT_SIGNGAM(_REENT))); if(_LIB_VERSION == _IEEE_) return y; if(!finite(y)&&finite(x)) { #ifndef HUGE_VAL -- cgit v1.2.3