> Is there any way to compare the non-padding parts of long doubles? > There ought to be *some* way to get the fractional part of a NaN, no?
frexp() [man 3 frexp] would be the right idea, except that it fails explicitly for NaN. --
> Is there any way to compare the non-padding parts of long doubles? > There ought to be *some* way to get the fractional part of a NaN, no?
frexp() [man 3 frexp] would be the right idea, except that it fails explicitly for NaN. --