Remove <sys/_types.h>.
Bug: 12213562
Change-Id: I0d10664f9da60739bdbad0408be0dd61eea3c1fe
diff --git a/libm/include/math.h b/libm/include/math.h
index b13eca9..bd0241b 100644
--- a/libm/include/math.h
+++ b/libm/include/math.h
@@ -18,7 +18,6 @@
#define _MATH_H_
#include <sys/cdefs.h>
-#include <sys/_types.h>
#include <limits.h>
/*
@@ -124,8 +123,10 @@
: (sizeof (x) == sizeof (double)) ? __signbit(x) \
: __signbitl(x))
-typedef __double_t double_t;
-typedef __float_t float_t;
+typedef double __double_t;
+typedef __double_t double_t;
+typedef float __float_t;
+typedef __float_t float_t;
#endif /* __ISO_C_VISIBLE >= 1999 */
/*