Print this page
5261 libm should stop using synonyms.h

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libm/common/LD/__poly_libmq.c
          +++ new/usr/src/lib/libm/common/LD/__poly_libmq.c
↓ open down ↓ 20 lines elided ↑ open up ↑
  21   21  
  22   22  /*
  23   23   * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  24   24   */
  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  #include "libm.h"
  31      -#include "libm_synonyms.h"
  32   31  
  33   32  long double __poly_libmq(x,n,p)
  34   33  long double x,p[];
  35   34  int n;
  36   35  {
  37   36          long double t; int i;
  38   37          t = p[n-1];
  39   38          for(i=n-2;i>=0;i--) t = p[i] + x*t;
  40   39          return t;
  41   40  }
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX