ref: 84a97807937e6e3e3edb4d36d6ee2bee32cc13c8 dir: /isnanf.c/
#include <u.h> int isNaNf(float f) { union { float f; u32int u; }x; x.f = f; return (x.u & (0xff<<23)) == (0xff<<23); }