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