diff options
author | Richard Lowe <richlowe@richlowe.net> | 2014-10-24 21:10:05 +0100 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2014-11-26 17:05:43 -0500 |
commit | ddc0e0b53c661f6e439e3b7072b3ef353eadb4af (patch) | |
tree | 450796cfb2c2d29437b1f00f96e765052dbfc904 /usr/src/lib/libm/common/complex/clog.c | |
parent | 1ec68d336ba97cd53f46053ac10401d16014d075 (diff) | |
download | illumos-gate-ddc0e0b53c661f6e439e3b7072b3ef353eadb4af.tar.gz |
5261 libm should stop using synonyms.h
5298 fabs is 0-sized, confuses dis(1) and others
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Approved by: Gordon Ross <gwr@nexenta.com>
Diffstat (limited to 'usr/src/lib/libm/common/complex/clog.c')
-rw-r--r-- | usr/src/lib/libm/common/complex/clog.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/lib/libm/common/complex/clog.c b/usr/src/lib/libm/common/complex/clog.c index eb8492e4bf..62b0b380d8 100644 --- a/usr/src/lib/libm/common/complex/clog.c +++ b/usr/src/lib/libm/common/complex/clog.c @@ -60,7 +60,6 @@ */ /* INDENT ON */ -#include "libm_synonyms.h" #include <math.h> /* atan2/fabs/log/log1p */ #include "complex_wrapper.h" #include "libm_protos.h" /* __k_clog_r */ @@ -69,7 +68,7 @@ static const double half = 0.5, one = 1.0; dcomplex -clog(dcomplex z) { +__clog(dcomplex z) { dcomplex ans; double x, y, t, ax, ay, w; int n, ix, iy, hx, hy; |