* src/fdlibm/s_finite.c,
[cacao.git] / src / fdlibm / s_finite.c
index 3e6c8122b25e6bd1c7404ab4848887cf163f1904..e35b776a41944812f2e42fff9ef9d516b3f41c45 100644 (file)
 #include "fdlibm.h"
 
 #ifdef __STDC__
-       int finite(double x)
+       int finite(double x)
 #else
-       int finite(x)
-       double x;
+       int finite(x)
+       double x;
 #endif
 {
-       uint32_t high; 
-       GET_HIGH_WORD(high,x);
-       return  (unsigned)((high&0x7fffffff)-0x7ff00000)>>31;
+       uint32_t hx;
+       GET_HIGH_WORD(hx,x);
+       return  (unsigned)((hx&0x7fffffff)-0x7ff00000)>>31;
 }