aboutsummaryrefslogtreecommitdiffstats
path: root/libm/include
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-07 14:55:58 -0800
committerElliott Hughes <enh@google.com>2014-02-07 14:55:58 -0800
commit9f87a0b285128542a221f2b69d3b959a4e33c054 (patch)
tree6854c64ecb95a5d048e7880b6493f7448a402ccc /libm/include
parente163a3986aa7d1c67fe3274eb9204812be0a6245 (diff)
downloadandroid_bionic-9f87a0b285128542a221f2b69d3b959a4e33c054.tar.gz
android_bionic-9f87a0b285128542a221f2b69d3b959a4e33c054.tar.bz2
android_bionic-9f87a0b285128542a221f2b69d3b959a4e33c054.zip
Remove <sys/_types.h>.
Bug: 12213562 Change-Id: I0d10664f9da60739bdbad0408be0dd61eea3c1fe
Diffstat (limited to 'libm/include')
-rw-r--r--libm/include/math.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libm/include/math.h b/libm/include/math.h
index b13eca949..bd0241b36 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 @@ extern const union __nan_un {
: (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 */
/*