On Thu, Feb 24, 2022 at 1:59 PM Greg Troxel <g...@lexort.com> wrote: > So I conclude that math.h is buggy on NetBSD 9. But can I really be the > first to notice?
I agree that there is a problem with math.h in NetBSD 9. I ran into this with https://github.com/microsoft/vcpkg-tool/pull/359, except there it was about mysterious (to me) C++ compiler errors with signbit and isfinite. I "solved" this by using the C++ equivalents, std::signbit and std::isfinite. -- Benny