summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-08-13 14:51:43 -0400
committerRich Felker <dalias@aerifal.cx>2012-08-13 14:51:43 -0400
commit2242bf616b893e85886ed0a2348b96bf1cf7623e (patch)
treee6e88ad8040ab298898509aabe5a77fee0808d12 /include
parent0c42beb5f90fe5583c2cae5a31c2ef68847974e3 (diff)
downloadmusl-2242bf616b893e85886ed0a2348b96bf1cf7623e.tar.gz
add significand[fl] math functions
Diffstat (limited to 'include')
-rw-r--r--include/math.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/math.h b/include/math.h
index 583dc3da..656f7868 100644
--- a/include/math.h
+++ b/include/math.h
@@ -400,6 +400,10 @@ long double exp10l(long double);
double pow10(double);
float pow10f(float);
long double pow10l(long double);
+
+double significand(double);
+float significandf(float);
+long double significandl(long double);
#endif
#ifdef __cplusplus