[BACK]Return to ldbl_dummy.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/ldbl_dummy.c between version 1.1.8.2 and 1.2

version 1.1.8.2, 2014/08/20 00:02:18 version 1.2, 2014/11/13 21:43:27
Line 58  __weak_alias(atanl, _atanl)
Line 58  __weak_alias(atanl, _atanl)
 __weak_alias(acoshl, _acoshl)  __weak_alias(acoshl, _acoshl)
 __weak_alias(asinhl, _asinhl)  __weak_alias(asinhl, _asinhl)
 __weak_alias(atanhl, _atanhl)  __weak_alias(atanhl, _atanhl)
   __weak_alias(erfl, _erfl)
   __weak_alias(erfcl, _erfcl)
   
 long double  long double
 atan2l(long double y, long double x)  atan2l(long double y, long double x)
Line 173  atanhl(long double x)
Line 175  atanhl(long double x)
 {  {
         return atanh(x);          return atanh(x);
 }  }
   
   long double
   erfl(long double x)
   {
           return erf(x);
   }
   
   long double
   erfcl(long double x)
   {
           return erfc(x);
   }

Legend:
Removed from v.1.1.8.2  
changed lines
  Added in v.1.2

CVSweb <webmaster@jp.NetBSD.org>