[BACK]Return to e_acosh.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/e_acosh.c between version 1.5 and 1.6

version 1.5, 1994/08/10 20:30:31 version 1.6, 1994/08/18 23:04:54
Line 47  ln2 = 6.93147180559945286227e-01;  /* 0x
Line 47  ln2 = 6.93147180559945286227e-01;  /* 0x
 #endif  #endif
 {  {
         double t;          double t;
         int hx;          int32_t hx;
         unsigned int lx;          u_int32_t lx;
         EXTRACT_WORDS(hx,lx,x);          EXTRACT_WORDS(hx,lx,x);
         if(hx<0x3ff00000) {             /* x < 1 */          if(hx<0x3ff00000) {             /* x < 1 */
             return (x-x)/(x-x);              return (x-x)/(x-x);

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

CVSweb <webmaster@jp.NetBSD.org>