summaryrefslogtreecommitdiffstats
path: root/floattypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'floattypes.h')
-rw-r--r--floattypes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/floattypes.h b/floattypes.h
index 8e70b27..426b23a 100644
--- a/floattypes.h
+++ b/floattypes.h
@@ -46,6 +46,7 @@ namespace std {
float fma(float x, float y, float z) { return ::fmaf(x, y, z); }
float fmax(float x, float y) { return ::fmaxf(x, y); }
float fmin(float x, float y) { return ::fminf(x, y); }
+ float frexp(float x, int* r) { return ::frexp(x, r); }
float hypot(float x, float y) { return ::hypotf(x, y); }
int ilogb(float x) { return ::ilogbf(x); }
float log1p(float x) { return ::log1pf(x); }
@@ -70,6 +71,7 @@ namespace std {
double fma(double x, double y, double z) { return ::fma(x, y, z); }
double fmax(double x, double y) { return ::fmax(x, y); }
double fmin(double x, double y) { return ::fmin(x, y); }
+ double frexp(double x, int* r) { return ::frexp(x, r); }
double hypot(double x, double y) { return ::hypot(x, y); }
int ilogb(double x) { return ::ilogb(x); }
double log1p(double x) { return ::log1p(x); }
OpenPOWER on IntegriCloud