summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2007-07-28 13:16:12 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2007-07-28 13:16:12 +0000
commit3aac6034b06074a6ae8e0666fb087a467d9166cf (patch)
tree60af07b5f518d04f26d350569b1be2ea1ae7a12c /numpy/core/src
parent73f4ef1d53b0d548eb11dbd9dd8ae5cac445b7a0 (diff)
downloadnumpy-3aac6034b06074a6ae8e0666fb087a467d9166cf.tar.gz
Fixed typos.
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/umathmodule.c.src4
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);
}