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