diff --git a/reactos/lib/sdk/crt/math/ieee754/j0_y0.c b/reactos/lib/sdk/crt/math/ieee754/j0_y0.c index 43f68a5bb86..e24f85637a7 100644 --- a/reactos/lib/sdk/crt/math/ieee754/j0_y0.c +++ b/reactos/lib/sdk/crt/math/ieee754/j0_y0.c @@ -352,9 +352,9 @@ static double pS2[5] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double z,r,s,z2,z4,r1,r2,r3,s1,s2,s3; int32_t ix; @@ -499,9 +499,9 @@ static double qS2[6] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double s,r,z,z2,z4,z6,r1,r2,r3,s1,s2,s3; int32_t ix; diff --git a/reactos/lib/sdk/crt/math/ieee754/j1_y1.c b/reactos/lib/sdk/crt/math/ieee754/j1_y1.c index 603eac28d8b..18c7e6df9b9 100644 --- a/reactos/lib/sdk/crt/math/ieee754/j1_y1.c +++ b/reactos/lib/sdk/crt/math/ieee754/j1_y1.c @@ -352,9 +352,9 @@ static double ps2[5] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double z,r,s,r1,r2,r3,s1,s2,s3,z2,z4; int32_t ix; @@ -500,9 +500,9 @@ static double qs2[6] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double s,r,z,r1,r2,r3,s1,s2,s3,z2,z4,z6; int32_t ix;