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_gamma_r.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- src/lib/libm/src/w_gamma_r.c 2001/01/06 00:15:00 1.10 +++ src/lib/libm/src/w_gamma_r.c 2002/05/26 22:02:00 1.11 @@ -12,7 +12,7 @@ #include #if defined(LIBM_SCCS) && !defined(lint) -__RCSID("$NetBSD: w_gamma_r.c,v 1.10 2001/01/06 00:15:00 christos Exp $"); +__RCSID("$NetBSD: w_gamma_r.c,v 1.11 2002/05/26 22:02:00 wiz Exp $"); #endif /* @@ -22,12 +22,8 @@ __RCSID("$NetBSD: w_gamma_r.c,v 1.10 200 #include "math.h" #include "math_private.h" -#ifdef __STDC__ - double gamma_r(double x, int *signgamp) /* wrapper lgamma_r */ -#else - double gamma_r(x,signgamp) /* wrapper lgamma_r */ - double x; int *signgamp; -#endif +double +gamma_r(double x, int *signgamp) /* wrapper lgamma_r */ { #ifdef _IEEE_LIBM return __ieee754_lgamma_r(x,signgamp);