summaryrefslogtreecommitdiff
path: root/sys/arch/vax/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-08-01 21:35:37 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-08-01 21:35:37 +0000
commit8b542be04f44ace75db3085327c2135a1d102c8a (patch)
treea039eb802b895bdbd114c9e84393b65dad5d48c9 /sys/arch/vax/include
parentf769129b312d5d01322196e7def1d68b12565ff5 (diff)
proto __flt_rounds correctly
Diffstat (limited to 'sys/arch/vax/include')
-rw-r--r--sys/arch/vax/include/float.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/vax/include/float.h b/sys/arch/vax/include/float.h
index ff59f6ac292..2d704f0e1af 100644
--- a/sys/arch/vax/include/float.h
+++ b/sys/arch/vax/include/float.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: float.h,v 1.2 1997/05/29 00:04:39 niklas Exp $ */
+/* $OpenBSD: float.h,v 1.3 1997/08/01 21:35:35 deraadt Exp $ */
/* $NetBSD: float.h,v 1.2 1994/10/26 08:02:08 cgd Exp $ */
/*
@@ -36,6 +36,12 @@
* @(#)float.h 7.2 (Berkeley) 6/28/90
*/
+#include <sys/cdefs.h>
+
+__BEGIN_DECLS
+int __flt_rounds __P((void));
+__END_DECLS
+
#define FLT_RADIX 2 /* b */
#define FLT_ROUNDS 1 /* FP addition rounds to nearest */