shithub: qk1

ref: 9d7854adca6f7c7bd9f83173e3ac4b0842b2aca1
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);
}