Print this page


Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/common/LD/cbrtl.c
          +++ new/usr/src/lib/libm/common/LD/cbrtl.c
↓ open down ↓ 24 lines elided ↑ open up ↑
  25   25  /*
  26   26   * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  27   27   * Use is subject to license terms.
  28   28   */
  29   29  
  30   30  #if defined(ELFOBJ)
  31   31  #pragma weak cbrtl = __cbrtl
  32   32  #endif
  33   33  
  34   34  #include "libm.h"
       35 +#include "longdouble.h"
  35   36  
  36   37  static const double d_one = 1.0;
  37   38  
  38   39  long double
  39   40  cbrtl(long double x) {
  40   41          long double s, t, r, w, y;
  41   42          double dx, dy;
  42   43          int *py = (int *) &dy;
  43   44          int n, m, m3, n0, sx;
  44   45  
↓ open down ↓ 30 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX