2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
9 * ====================================================
13 * __isnanf(x) returns 1 is x is nan, else 0;
24 return FLT_UWORD_IS_NAN(ix
);
27 #ifdef _DOUBLE_IS_32BITS
32 return __isnanf((float) x
);
35 #endif /* defined(_DOUBLE_IS_32BITS) */