diff options
| author | bjh21 <bjh21@NetBSD.org> | 2002-05-06 19:05:00 +0000 |
|---|---|---|
| committer | bjh21 <bjh21@NetBSD.org> | 2002-05-06 19:05:00 +0000 |
| commit | 251de84cccbbe91322c6ea1cc57f5b5e17d4af29 (patch) | |
| tree | 86169584063fe2e1ae7207b55b0d561125214931 /lib/libc/softfloat | |
| parent | 0eaaac19bfb1a07a023b96a1258a2a9219fbd1c2 (diff) | |
Consistently declare the types of float_rounding_mode and float_exception_flags
as fp_rnd and fp_except respectively.
Diffstat (limited to 'lib/libc/softfloat')
| -rw-r--r-- | lib/libc/softfloat/softfloat.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 <sys/cdefs.h> #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 |
