summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2011-08-29 13:13:22 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2011-08-29 13:13:22 +0000
commitdd4db024275291fa6afe4e422e7c0d0282d9dcee (patch)
tree6ec8257536c71e3c8d595d34d00477870de725b4 /sys/arch/hppa
parent1a5d13f5953dabd1f4a09c3a9c4ff92520a5ca2f (diff)
Only provide FLT_EVAL_METHOD for C99. Add missing DECIMAL_DIG for C99.
ok guenther@
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/include/float.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/float.h b/sys/arch/hppa/include/float.h
index bbbb538f453..f5df96d5736 100644
--- a/sys/arch/hppa/include/float.h
+++ b/sys/arch/hppa/include/float.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: float.h,v 1.10 2011/03/23 16:54:35 pirofti Exp $ */
+/* $OpenBSD: float.h,v 1.11 2011/08/29 13:13:21 kettenis Exp $ */
/*
* Copyright (c) 1989 Regents of the University of California.
@@ -42,7 +42,9 @@ __END_DECLS
#define FLT_RADIX 2
#define FLT_ROUNDS __flt_rounds()
+#if __ISO_C_VISIBLE >= 1999
#define FLT_EVAL_METHOD 0 /* no promotions */
+#endif
#define FLT_MANT_DIG 24
#define FLT_EPSILON 1.19209290E-07F
@@ -74,4 +76,8 @@ __END_DECLS
#define LDBL_MAX DBL_MAX
#define LDBL_MAX_10_EXP DBL_MAX_10_EXP
+#if __ISO_C_VISIBLE >= 1999
+#define DECIMAL_DIG 17
+#endif
+
#endif /* _MACHINE_FLOAT_H_ */