Skip to content

Commit a9f2a61

Browse files
yuyichaoararslan
authored andcommitted
Merge pull request #35 from albap/master
Fix portability issues
1 parent 157c76f commit a9f2a61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/specfun/e_rem_pio2.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ __ieee754_rem_pio2(double x, double *y)
5858
double z,w,t,r,fn;
5959
double tx[3],ty[2];
6060
int32_t e0,i,j,nx,n,ix,hx;
61-
u_int32_t low;
61+
uint32_t low;
6262

6363
GET_HIGH_WORD(hx,x); /* high word of x */
6464
ix = hx&0x7fffffff;
@@ -139,7 +139,7 @@ __ieee754_rem_pio2(double x, double *y)
139139
r = x-fn*pio2_1;
140140
w = fn*pio2_1t; /* 1st round good to 85 bit */
141141
{
142-
u_int32_t high;
142+
uint32_t high;
143143
j = ix>>20;
144144
y[0] = r-w;
145145
GET_HIGH_WORD(high,y[0]);

0 commit comments

Comments
 (0)