diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-29 16:57:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-29 16:57:20 +0000 |
commit | 1c2334f6fa47d90f6b21649a2db2fbb0508c7d1d (patch) | |
tree | de79fd68b9cc5925a62f8d9f9dccc4777508f8ea /sys/arch/alpha/include | |
parent | b4de0cd866ae73020f8a71e15de188acd19b7dfc (diff) |
Do not define _FP_DYNAMIC; no other platform defines this and nothing (either
in kernel or in userland) uses it.
ok deraadt@
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r-- | sys/arch/alpha/include/ieeefp.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/alpha/include/ieeefp.h b/sys/arch/alpha/include/ieeefp.h index 4cb8539a2c1..a1c87d29f51 100644 --- a/sys/arch/alpha/include/ieeefp.h +++ b/sys/arch/alpha/include/ieeefp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieeefp.h,v 1.4 2002/04/28 20:55:14 pvalchev Exp $ */ +/* $OpenBSD: ieeefp.h,v 1.5 2007/12/29 16:57:19 miod Exp $ */ /* $NetBSD: ieeefp.h,v 1.1 1995/04/29 01:09:17 cgd Exp $ */ /* @@ -47,8 +47,7 @@ typedef enum { FP_RZ = 0, /* round to zero (truncate) */ FP_RM = 1, /* round toward negative infinity */ FP_RN = 2, /* round to nearest representable number */ - FP_RP = 3, /* round toward positive infinity */ - _FP_DYNAMIC=FP_RP + FP_RP = 3 /* round toward positive infinity */ } fp_rnd; #endif /* _ALPHA_IEEEFP_H_ */ |