Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libm/src/w_lgamma.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- src/lib/libm/src/w_lgamma.c 2001/01/06 00:15:00 1.9 +++ src/lib/libm/src/w_lgamma.c 2002/05/26 22:02:02 1.10 @@ -12,7 +12,7 @@ #include #if defined(LIBM_SCCS) && !defined(lint) -__RCSID("$NetBSD: w_lgamma.c,v 1.9 2001/01/06 00:15:00 christos Exp $"); +__RCSID("$NetBSD: w_lgamma.c,v 1.10 2002/05/26 22:02:02 wiz Exp $"); #endif /* double lgamma(double x) @@ -24,12 +24,8 @@ __RCSID("$NetBSD: w_lgamma.c,v 1.9 2001/ #include "math.h" #include "math_private.h" -#ifdef __STDC__ - double lgamma(double x) -#else - double lgamma(x) - double x; -#endif +double +lgamma(double x) { #ifdef _IEEE_LIBM return __ieee754_lgamma_r(x,&signgam);