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