diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-13 16:00:31 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-13 16:00:31 -0400 |
commit | ab76321c14e18e70c853f34202a567749292eafc (patch) | |
tree | 1bf3e9abc981a02f38921babbd65eee2ccc781ea /include | |
parent | 2242bf616b893e85886ed0a2348b96bf1cf7623e (diff) | |
download | musl-ab76321c14e18e70c853f34202a567749292eafc.tar.gz musl-ab76321c14e18e70c853f34202a567749292eafc.tar.bz2 musl-ab76321c14e18e70c853f34202a567749292eafc.tar.xz musl-ab76321c14e18e70c853f34202a567749292eafc.zip |
remove significandl
this function never existed historically; since the float/double
functions it's based on are nonstandard and deprecated, there's really
no justification for its existence except that glibc has it. it can be
added back if there's ever really a need...
Diffstat (limited to 'include')
-rw-r--r-- | include/math.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/math.h b/include/math.h index 656f7868..cf9d9fbf 100644 --- a/include/math.h +++ b/include/math.h @@ -403,7 +403,6 @@ long double pow10l(long double); double significand(double); float significandf(float); -long double significandl(long double); #endif #ifdef __cplusplus |