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