diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-05 04:02:40 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-05 04:02:40 +0000 |
commit | f40c4beafc7899e6bffca057b77d44f7a10ff791 (patch) | |
tree | 5e9e914047f3f47bc5acd462475f1e78c1149758 | |
parent | d9b1742ee2d6b8939e93d6f602fa2a1287d00070 (diff) | |
download | numpy-f40c4beafc7899e6bffca057b77d44f7a10ff791.tar.gz |
BUG: typo when defining internal nextafterf.
-rw-r--r-- | numpy/core/src/npymath/ieee754.c | 2 |
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; |