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