diff --git a/sys/arch/pc532/include/float.h b/sys/arch/pc532/include/float.h index bc64a4cbe648..d13b2b9c7715 100644 --- a/sys/arch/pc532/include/float.h +++ b/sys/arch/pc532/include/float.h @@ -1,4 +1,4 @@ -/* $NetBSD: float.h,v 1.4 1994/10/26 08:24:27 cgd Exp $ */ +/* $NetBSD: float.h,v 1.5 1995/04/28 21:58:57 jtc Exp $ */ /* * Copyright (c) 1989 Regents of the University of California. @@ -35,8 +35,9 @@ * @(#)float.h 7.1 (Berkeley) 5/8/90 */ +extern int __flt_rounds(); #define FLT_RADIX 2 /* b */ -#define FLT_ROUNDS 1 /* FP addition rounds to nearest */ +#define FLT_ROUNDS __flt_rounds() #define FLT_MANT_DIG 24 /* p */ #define FLT_EPSILON 1.19209290E-07F /* b**(1-p) */