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