annotate src/build-msvctools/math/finite.c @ 7244:1448afad6165 default tip @

HDF5: Update to 1.14.3 * src/hdf5.mk: Update version and checksum. Remove configure flags that no longer exist. Add configure flags to override erroneous test results. Remove copying pre-generated files that is no longer needed. * src/mingw-hdf5-1.patch: Remove patch. Cross-compilation is working now with the upstream build system. * dist-files.mk: Remove deleted file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 07 Jun 2024 23:31:25 +0200
parents f8299bb6c872
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3061
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
1 #define __STDC__ 1
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
2
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
3 #include <math.h>
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
4 #include <float.h>
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
5
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
6 int finite (double x)
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
7 { return _finite (x); }