diff options
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; |