diff options
Diffstat (limited to 'numpy/core/src/umathmodule.c.src')
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index 2bb4643d6..dfbca6ece 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -49,13 +49,13 @@ static float rintf(float x) } #endif #ifndef HAVE_FREXPF -static float frexpf(float x, int * i); +static float frexpf(float x, int * i) { return (float)frexp((double)(x), i); } #endif #ifndef HAVE_LDEXPF -static float ldexpf(float x, int i); +static float ldexpf(float x, int i) { return (float)ldexp((double)(x), i); } |