diff options
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/mips64/include/float.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/_types.h b/sys/arch/mips64/include/_types.h index 37ad2cde899..4531dfd5efb 100644 --- a/sys/arch/mips64/include/_types.h +++ b/sys/arch/mips64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.4 2007/05/16 17:27:30 art Exp $ */ +/* $OpenBSD: _types.h,v 1.5 2008/07/21 20:50:54 martynas Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -101,6 +101,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/mips64/include/float.h b/sys/arch/mips64/include/float.h index de2a1353966..f3fe1b0ed1e 100644 --- a/sys/arch/mips64/include/float.h +++ b/sys/arch/mips64/include/float.h @@ -1,4 +1,4 @@ -/* $OpenBSD: float.h,v 1.3 2005/08/07 07:29:44 miod Exp $ */ +/* $OpenBSD: float.h,v 1.4 2008/07/21 20:50:54 martynas Exp $ */ /* * Copyright (c) 1989, 1993 @@ -42,6 +42,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-07F /* b**(1-p) */ |