From ed09037473581908f6b52ecc3cabc82a414e2a54 Mon Sep 17 00:00:00 2001 From: mattip Date: Sun, 5 Feb 2023 11:12:25 +0200 Subject: [PATCH] BLD: remove redundant definition of npy_nextafter [wheel build] --- numpy/core/src/npymath/arm64_exports.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/numpy/core/src/npymath/arm64_exports.c b/numpy/core/src/npymath/arm64_exports.c index dfa8054d7e9d..c9f0fbf746eb 100644 --- a/numpy/core/src/npymath/arm64_exports.c +++ b/numpy/core/src/npymath/arm64_exports.c @@ -23,8 +23,4 @@ double npy_log1p(double x) { return log1p(x); } -double npy_nextafter(double x, double y) { - return nextafter(x, y); -} - #endif