"These functions return zero if neither argument is NaN, and a and b are equal." Note that due to some kind of historical accident, __eqtf2 and __netf2 are defined to have the same return value.
fn __eqtf2(a: f128, b: f128) callconv(.c) i32
fn __eqtf2(a: f128, b: f128) callconv(.c) i32 {
return __cmptf2(a, b);
}