shithub: qk1

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