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