[BACK]Return to w_log10.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/w_log10.c between version 1.7 and 1.8

version 1.7, 1997/10/09 11:35:39 version 1.8, 1999/07/02 15:37:44
Line 5 
Line 5 
  *   *
  * Developed at SunPro, a Sun Microsystems, Inc. business.   * Developed at SunPro, a Sun Microsystems, Inc. business.
  * Permission to use, copy, modify, and distribute this   * Permission to use, copy, modify, and distribute this
  * software is freely granted, provided that this notice   * software is freely granted, provided that this notice
  * is preserved.   * is preserved.
  * ====================================================   * ====================================================
  */   */
Line 15 
Line 15 
 __RCSID("$NetBSD$");  __RCSID("$NetBSD$");
 #endif  #endif
   
 /*  /*
  * wrapper log10(X)   * wrapper log10(X)
  */   */
   
Line 39  __RCSID("$NetBSD$");
Line 39  __RCSID("$NetBSD$");
         if(x<=0.0) {          if(x<=0.0) {
             if(x==0.0)              if(x==0.0)
                 return __kernel_standard(x,x,18); /* log10(0) */                  return __kernel_standard(x,x,18); /* log10(0) */
             else              else
                 return __kernel_standard(x,x,19); /* log10(x<0) */                  return __kernel_standard(x,x,19); /* log10(x<0) */
         } else          } else
             return z;              return z;

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

CVSweb <webmaster@jp.NetBSD.org>