Print this page
5261 libm should stop using synonyms.h

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/common/C/sqrt.c
          +++ new/usr/src/lib/libm/common/C/sqrt.c
↓ open down ↓ 18 lines elided ↑ open up ↑
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
  22   22   * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  23   23   */
  24   24  /*
  25   25   * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
  26   26   * Use is subject to license terms.
  27   27   */
  28   28  
  29      -#pragma weak sqrt = __sqrt
       29 +#pragma weak __sqrt = sqrt
  30   30  
  31   31  #include "libm.h"
  32   32  
  33   33  
  34   34  extern double __inline_sqrt(double);
  35   35  
  36   36  double
  37   37  sqrt(double x) {
  38   38          double  z = __inline_sqrt(x);
  39   39  
  40   40          if (isnan(x))
  41   41                  return (z);
  42   42          return ((x < 0.0)? _SVID_libm_err(x, x, 26) : z);
  43   43  }
  44   44  
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX