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/s_copysignf.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- src/lib/libm/src/s_copysignf.c 1999/07/02 15:37:42 1.6 +++ src/lib/libm/src/s_copysignf.c 2002/05/26 22:01:54 1.7 @@ -15,7 +15,7 @@ #include #if defined(LIBM_SCCS) && !defined(lint) -__RCSID("$NetBSD: s_copysignf.c,v 1.6 1999/07/02 15:37:42 simonb Exp $"); +__RCSID("$NetBSD: s_copysignf.c,v 1.7 2002/05/26 22:01:54 wiz Exp $"); #endif /* @@ -27,12 +27,8 @@ __RCSID("$NetBSD: s_copysignf.c,v 1.6 19 #include "math.h" #include "math_private.h" -#ifdef __STDC__ - float copysignf(float x, float y) -#else - float copysignf(x,y) - float x,y; -#endif +float +copysignf(float x, float y) { u_int32_t ix,iy; GET_FLOAT_WORD(ix,x);