shithub: qk1

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