[BACK]Return to s_copysignf.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libm / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libm/src/s_copysignf.c between version 1.6 and 1.7

version 1.6, 1999/07/02 15:37:42 version 1.7, 2002/05/26 22:01:54
Line 27  __RCSID("$NetBSD$");
Line 27  __RCSID("$NetBSD$");
 #include "math.h"  #include "math.h"
 #include "math_private.h"  #include "math_private.h"
   
 #ifdef __STDC__  float
         float copysignf(float x, float y)  copysignf(float x, float y)
 #else  
         float copysignf(x,y)  
         float x,y;  
 #endif  
 {  {
         u_int32_t ix,iy;          u_int32_t ix,iy;
         GET_FLOAT_WORD(ix,x);          GET_FLOAT_WORD(ix,x);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb <webmaster@jp.NetBSD.org>