From 251de84cccbbe91322c6ea1cc57f5b5e17d4af29 Mon Sep 17 00:00:00 2001 From: bjh21 Date: Mon, 6 May 2002 19:05:00 +0000 Subject: Consistently declare the types of float_rounding_mode and float_exception_flags as fp_rnd and fp_except respectively. --- lib/libc/softfloat/softfloat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libc/softfloat/softfloat.c') diff --git a/lib/libc/softfloat/softfloat.c b/lib/libc/softfloat/softfloat.c index 3d2de135a92..af1902b4f24 100644 --- a/lib/libc/softfloat/softfloat.c +++ b/lib/libc/softfloat/softfloat.c @@ -1,4 +1,4 @@ -/* $NetBSD: softfloat.c,v 1.7 2002/03/10 14:15:09 bjh21 Exp $ */ +/* $NetBSD: softfloat.c,v 1.8 2002/05/06 19:05:00 bjh21 Exp $ */ /* * This version hacked for use with gcc -msoft-float by bjh21. @@ -46,7 +46,7 @@ this code that are retained. #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: softfloat.c,v 1.7 2002/03/10 14:15:09 bjh21 Exp $"); +__RCSID("$NetBSD: softfloat.c,v 1.8 2002/05/06 19:05:00 bjh21 Exp $"); #endif /* LIBC_SCCS and not lint */ #ifdef SOFTFLOAT_FOR_GCC @@ -73,8 +73,8 @@ Floating-point rounding mode, extended double-precision rounding precision, and exception flags. ------------------------------------------------------------------------------- */ -int8 float_rounding_mode = float_round_nearest_even; -int8 float_exception_flags = 0; +fp_rnd float_rounding_mode = float_round_nearest_even; +fp_except float_exception_flags = 0; #ifdef FLOATX80 int8 floatx80_rounding_precision = 80; #endif -- cgit