diff options
| author | jtc <jtc@NetBSD.org> | 1995-03-25 01:48:53 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1995-03-25 01:48:53 +0000 |
| commit | d6c3ebedb462db2933a59ecb262adae84dd6323b (patch) | |
| tree | c0d69871707c9ce2bf4bfb091c1401823df6ad39 /lib/libm/src | |
| parent | c7cee0e9b64ff60b7fbd529627b34ab7405c6ead (diff) | |
Fix overlooked FIXME: unsigned int -> u_int32_t.
Diffstat (limited to 'lib/libm/src')
| -rw-r--r-- | lib/libm/src/math_private.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libm/src/math_private.h b/lib/libm/src/math_private.h index 2183c9f2c16..7447189e7ac 100644 --- a/lib/libm/src/math_private.h +++ b/lib/libm/src/math_private.h @@ -11,7 +11,7 @@ /* * from: @(#)fdlibm.h 5.1 93/09/24 - * $Id: math_private.h,v 1.2 1994/08/18 23:06:19 jtc Exp $ + * $Id: math_private.h,v 1.3 1995/03/25 01:48:53 jtc Exp $ */ #ifndef _MATH_PRIVATE_H_ @@ -126,8 +126,7 @@ do { \ typedef union { float value; - /* FIXME: Assumes 32 bit int. */ - unsigned int word; + u_int32_t word; } ieee_float_shape_type; /* Get a 32 bit int from a float. */ |
