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