shithub: qk1

ref: 678bf631976e0e2f9801c0f59d3b6a7d7329e07e
dir: /isnanf.c/

View raw version
#include <u.h>

int
isnanf(float f)
{
	union {
		float f;
		u32int u;
	}x;

	x.f = f;
	return (x.u & (0xff<<23)) == (0xff<<23);
}