mirror of
https://github.com/ziglang/zig.git
synced 2025-12-19 04:33:09 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
22 lines
410 B
C
Vendored
22 lines
410 B
C
Vendored
#include <math.h>
|
|
#include <float.h>
|
|
|
|
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
|
|
long double fminl(long double x, long double y)
|
|
{
|
|
return fmin(x, y);
|
|
}
|
|
#else
|
|
long double fminl(long double x, long double y)
|
|
{
|
|
if (isnan(x))
|
|
return y;
|
|
if (isnan(y))
|
|
return x;
|
|
/* handle signed zeros, see C99 Annex F.9.9.2 */
|
|
if (signbit(x) != signbit(y))
|
|
return signbit(x) ? x : y;
|
|
return x < y ? x : y;
|
|
}
|
|
#endif
|