shithub: qk1

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