diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-07-21 20:50:56 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-07-21 20:50:56 +0000 |
commit | 37072fdb15d462086950f52b161458da21410437 (patch) | |
tree | 08b3103a696c4c6bc6850f837614a32e9c961258 /sys/arch/arm | |
parent | d079b58d526fee9d549fe05a31c7814d92dd6f28 (diff) |
- add proper double_t and float_t definitions for each arch
- math.h shouldn't define FLT_EVAL_METHOD, but float.h should (per
C99). remove from math.h, and add proper definitions in float.h
ok millert@
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/arm/include/float.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/arm/include/_types.h b/sys/arch/arm/include/_types.h index ea013402cad..2586c872d12 100644 --- a/sys/arch/arm/include/_types.h +++ b/sys/arch/arm/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.5 2007/05/16 17:27:30 art Exp $ */ +/* $OpenBSD: _types.h,v 1.6 2008/07/21 20:50:54 martynas Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -93,6 +93,8 @@ typedef unsigned long __psize_t; /* Standard system types */ typedef int __clock_t; typedef int __clockid_t; +typedef double __double_t; +typedef float __float_t; typedef long long __off_t; typedef long __ptrdiff_t; typedef unsigned long __size_t; diff --git a/sys/arch/arm/include/float.h b/sys/arch/arm/include/float.h index 0795daaad25..46d7792966e 100644 --- a/sys/arch/arm/include/float.h +++ b/sys/arch/arm/include/float.h @@ -1,4 +1,4 @@ -/* $OpenBSD: float.h,v 1.2 2004/05/19 03:17:07 drahn Exp $ */ +/* $OpenBSD: float.h,v 1.3 2008/07/21 20:50:54 martynas Exp $ */ /* $NetBSD: float.h,v 1.1 2001/01/10 19:02:06 bjh21 Exp $ */ /* @@ -56,6 +56,7 @@ __END_DECLS #define FLT_RADIX 2 /* b */ #define FLT_ROUNDS __flt_rounds() +#define FLT_EVAL_METHOD 0 /* no promotions */ #define FLT_MANT_DIG 24 /* p */ #define FLT_EPSILON 1.19209290E-7F /* b**(1-p) */ |