shithub: qk1

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