aboutsummaryrefslogtreecommitdiff
path: root/math/s_nexttowardf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_nexttowardf.c')
-rw-r--r--math/s_nexttowardf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/s_nexttowardf.c b/math/s_nexttowardf.c
index 30cd81b454..85d02e863a 100644
--- a/math/s_nexttowardf.c
+++ b/math/s_nexttowardf.c
@@ -28,7 +28,7 @@
float __nexttowardf(float x, long double y)
{
int32_t hx,hy,ix,iy;
- u_int32_t ly;
+ uint32_t ly;
GET_FLOAT_WORD(hx,x);
EXTRACT_WORDS(hy,ly,y);
@@ -41,7 +41,7 @@ float __nexttowardf(float x, long double y)
if((long double) x==y) return y; /* x=y, return y */
if(ix==0) { /* x == 0 */
float u;
- SET_FLOAT_WORD(x,(u_int32_t)(hy&0x80000000)|1);/* return +-minsub*/
+ SET_FLOAT_WORD(x,(uint32_t)(hy&0x80000000)|1);/* return +-minsub*/
u = math_opt_barrier (x);
u = u * u;
math_force_eval (u); /* raise underflow flag */