diff options
author | das <das@FreeBSD.org> | 2004-06-20 09:26:41 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2004-06-20 09:26:41 +0000 |
commit | 62b8ef8dc21a0a06f1e4187f5bc45f31794e0f2d (patch) | |
tree | ce8a46cc93b61680c6d9e365e71dc24614414c71 /lib/msun/src | |
parent | a97ec37c726c46345ae3b772af50e73bba579331 (diff) | |
download | FreeBSD-src-62b8ef8dc21a0a06f1e4187f5bc45f31794e0f2d.zip FreeBSD-src-62b8ef8dc21a0a06f1e4187f5bc45f31794e0f2d.tar.gz |
Declare scalbln(), scalblnf(), trunc(), and truncf().
Diffstat (limited to 'lib/msun/src')
-rw-r--r-- | lib/msun/src/math.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index ac0f2ee..6b08922 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -216,6 +216,7 @@ double nextafter(double, double); double remainder(double, double); double rint(double) __pure2; double round(double); +double trunc(double); #endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */ #if __BSD_VISIBLE || __XSI_VISIBLE @@ -234,6 +235,7 @@ double gamma(double); #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 double copysign(double, double) __pure2; +double scalbln(double, long); double scalbn(double, int); double tgamma(double); #endif @@ -309,7 +311,9 @@ float copysignf(float, float) __pure2; float nextafterf(float, float); float remainderf(float, float); float rintf(float); +float scalblnf(float, long); float scalbnf(float, int); +float truncf(float); #endif /* |