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