remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl] / src / math / __fpclassify.c
index c9dd027..f7c0e2d 100644 (file)
@@ -1,10 +1,11 @@
-#include "libm.h"
+#include <math.h>
+#include <stdint.h>
 
 int __fpclassify(double x)
 {
-       union dshape u = { x };
-       int e = u.bits>>52 & 0x7ff;
-       if (!e) return u.bits<<1 ? FP_SUBNORMAL : FP_ZERO;
-       if (e==0x7ff) return u.bits<<12 ? FP_NAN : FP_INFINITE;
+       union {double f; uint64_t i;} u = {x};
+       int e = u.i>>52 & 0x7ff;
+       if (!e) return u.i<<1 ? FP_SUBNORMAL : FP_ZERO;
+       if (e==0x7ff) return u.i<<12 ? FP_NAN : FP_INFINITE;
        return FP_NORMAL;
 }