ref: 8bd89358c5cb1c25e5ed98080fe6b81db29b2c03 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); }