diff options
Diffstat (limited to 'math/w_lgamma.c')
-rw-r--r-- | math/w_lgamma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_lgamma.c b/math/w_lgamma.c index 0cc62a1784..4815db6df7 100644 --- a/math/w_lgamma.c +++ b/math/w_lgamma.c @@ -37,7 +37,7 @@ static char rcsid[] = "$NetBSD: w_lgamma.c,v 1.6 1995/05/10 20:49:24 jtc Exp $"; int local_signgam; y = __ieee754_lgamma_r(x,&local_signgam); if (_LIB_VERSION != _ISOC_) - /* ISO C 9x does not define the global variable. */ + /* ISO C99 does not define the global variable. */ signgam = local_signgam; if(_LIB_VERSION == _IEEE_) return y; if(!__finite(y)&&__finite(x)) { |