OSDN Git Service

- move libm_hidden_proto to the corresponding headers. Remove from callsites.
[uclinux-h8/uClibc.git] / libm / s_isnan.c
1 /* @(#)s_isnan.c 5.1 93/09/24 */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
6  * Developed at SunPro, a Sun Microsystems, Inc. business.
7  * Permission to use, copy, modify, and distribute this
8  * software is freely granted, provided that this notice
9  * is preserved.
10  * ====================================================
11  */
12
13 /*
14  * isnan(x) returns 1 is x is nan, else 0;
15  * no branching!
16  */
17
18 #include "math.h"
19 #include "math_private.h"
20
21 #ifdef __STDC__
22         int __isnan(double x)
23 #else
24         int __isnan(x)
25         double x;
26 #endif
27 {
28         int32_t hx,lx;
29         EXTRACT_WORDS(hx,lx,x);
30         hx &= 0x7fffffff;
31         hx |= (u_int32_t)(lx|(-lx))>>31;
32         hx = 0x7ff00000 - hx;
33         return (int)(((u_int32_t)hx)>>31);
34 }
35 libm_hidden_def(__isnan)
36 weak_alias(__isnan,isnan)
37 libm_hidden_weak(isnan)