shithub: qk1

ref: 554f7a5c2fb8b4ac80034323e54c67ec12f8763a
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);
}