diff options
author | das <das@FreeBSD.org> | 2008-03-02 01:47:58 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-03-02 01:47:58 +0000 |
commit | 40c2687372d3787b54f59483b7b4ce8df207403c (patch) | |
tree | ed507bc2a99d9d0bd801a28306c9065543f2f35d /lib/msun/src/math.h | |
parent | dd3a7906ab066bb6da5ec7f1fcf0fbe6d1ddc268 (diff) | |
download | FreeBSD-src-40c2687372d3787b54f59483b7b4ce8df207403c.zip FreeBSD-src-40c2687372d3787b54f59483b7b4ce8df207403c.tar.gz |
MI implementation of sqrtl(). This is very slow and should
be overridden when hardware sqrt is available.
Diffstat (limited to 'lib/msun/src/math.h')
-rw-r--r-- | lib/msun/src/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 85b8483..d7e52ed 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -468,8 +468,8 @@ long double scalbnl(long double, int); long double sinhl(long double); #endif long double sinl(long double); -#if 0 long double sqrtl(long double); +#if 0 long double tanhl(long double); #endif long double tanl(long double); |