aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Schultz <das@FreeBSD.org>2012-01-16 20:17:51 +0000
committerDavid Schultz <das@FreeBSD.org>2012-01-16 20:17:51 +0000
commitcb659153f912372285b66843ae3398a552683af9 (patch)
tree7ee4fc399932486b172018a9c5391d18abb10c70 /sys
parentb3088c8315f181cb9e6caa8b1c84619b5a061560 (diff)
downloadsrc-cb659153f912372285b66843ae3398a552683af9.tar.gz
src-cb659153f912372285b66843ae3398a552683af9.zip
Fix the value of float_t to match what is implied by FLT_EVAL_METHOD.
Notes
Notes: svn path=/head/; revision=230229
Diffstat (limited to 'sys')
-rw-r--r--sys/arm/include/_types.h2
-rw-r--r--sys/mips/include/_types.h2
-rw-r--r--sys/powerpc/include/_types.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/arm/include/_types.h b/sys/arm/include/_types.h
index 6e912708e2b0..338c19c11136 100644
--- a/sys/arm/include/_types.h
+++ b/sys/arm/include/_types.h
@@ -69,7 +69,7 @@ typedef unsigned long long __uint64_t;
typedef __uint32_t __clock_t; /* clock()... */
typedef __int32_t __critical_t;
typedef double __double_t;
-typedef double __float_t;
+typedef float __float_t;
typedef __int32_t __intfptr_t;
typedef __int64_t __intmax_t;
typedef __int32_t __intptr_t;
diff --git a/sys/mips/include/_types.h b/sys/mips/include/_types.h
index 8f09f63f3937..a92f7fb2363d 100644
--- a/sys/mips/include/_types.h
+++ b/sys/mips/include/_types.h
@@ -74,7 +74,7 @@ typedef unsigned long long __uint64_t;
*/
typedef __int32_t __clock_t; /* clock()... */
typedef double __double_t;
-typedef double __float_t;
+typedef float __float_t;
#ifdef __mips_n64
typedef __int64_t __critical_t;
typedef __int64_t __intfptr_t;
diff --git a/sys/powerpc/include/_types.h b/sys/powerpc/include/_types.h
index 331c9a2cfc5d..8c09ae741f53 100644
--- a/sys/powerpc/include/_types.h
+++ b/sys/powerpc/include/_types.h
@@ -73,7 +73,7 @@ typedef unsigned long long __uint64_t;
*/
typedef __uint32_t __clock_t; /* clock()... */
typedef double __double_t;
-typedef double __float_t;
+typedef float __float_t;
#ifdef __LP64__
typedef __int64_t __critical_t;
typedef __int64_t __intfptr_t;