diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-28 13:16:12 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-28 13:16:12 +0000 |
commit | 3aac6034b06074a6ae8e0666fb087a467d9166cf (patch) | |
tree | 60af07b5f518d04f26d350569b1be2ea1ae7a12c /numpy/core/src | |
parent | 73f4ef1d53b0d548eb11dbd9dd8ae5cac445b7a0 (diff) | |
download | numpy-3aac6034b06074a6ae8e0666fb087a467d9166cf.tar.gz |
Fixed typos.
Diffstat (limited to 'numpy/core/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); } |