ref: 49a810aeb5cb996bf9a6d4e3c38fc4d17fb77610 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); }