summaryrefslogtreecommitdiff
path: root/usr/src/lib/libm/common/complex/clog.c
diff options
context:
space:
mode:
authorRichard Lowe <richlowe@richlowe.net>2014-10-24 21:10:05 +0100
committerRichard Lowe <richlowe@richlowe.net>2014-11-26 17:05:43 -0500
commitddc0e0b53c661f6e439e3b7072b3ef353eadb4af (patch)
tree450796cfb2c2d29437b1f00f96e765052dbfc904 /usr/src/lib/libm/common/complex/clog.c
parent1ec68d336ba97cd53f46053ac10401d16014d075 (diff)
downloadillumos-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.c3
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;