summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-11-05 04:02:40 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-11-05 04:02:40 +0000
commitf40c4beafc7899e6bffca057b77d44f7a10ff791 (patch)
tree5e9e914047f3f47bc5acd462475f1e78c1149758 /numpy
parentd9b1742ee2d6b8939e93d6f602fa2a1287d00070 (diff)
downloadnumpy-f40c4beafc7899e6bffca057b77d44f7a10ff791.tar.gz
BUG: typo when defining internal nextafterf.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/npymath/ieee754.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/npymath/ieee754.c b/numpy/core/src/npymath/ieee754.c
index 507fa6905..833581eb5 100644
--- a/numpy/core/src/npymath/ieee754.c
+++ b/numpy/core/src/npymath/ieee754.c
@@ -109,7 +109,7 @@ double npy_nextafter(double x, double y)
#endif
#ifndef HAVE_NEXTAFTERF
-float nextafterf(float x, float y)
+float npy_nextafterf(float x, float y)
{
volatile float t;
npy_int32 hx, hy, ix, iy;