File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
IGC/BiFModule/Implementation/ExternalLibraries/sun Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ but these catch some common cases. */
66
66
#define TLOSS 5
67
67
#define PLOSS 6
68
68
69
- extern double scalbn __P ((double , int ));
69
+ extern double __scalbn_tmp __P ((double , int ));
70
70
71
71
extern int matherr __P ((struct exception * ) );
72
72
Original file line number Diff line number Diff line change @@ -49,9 +49,9 @@ huge = 1.0e+300,
49
49
tiny = 1.0e-300 ;
50
50
51
51
#ifdef __STDC__
52
- double scalbn (double x , int n )
52
+ double __scalbn_tmp (double x , int n )
53
53
#else
54
- double scalbn (x ,n )
54
+ double __scalbn_tmp (x ,n )
55
55
double x ; int n ;
56
56
#endif
57
57
{
@@ -363,7 +363,7 @@ double sun_pow(double x, double y)
363
363
z = one - (r - z );
364
364
j = __HI (z );
365
365
j += (n <<20 );
366
- if ((j >>20 )<=0 ) z = scalbn (z ,n ); /* subnormal output */
366
+ if ((j >>20 )<=0 ) z = __scalbn_tmp (z ,n ); /* subnormal output */
367
367
else __HI (z ) += (n <<20 );
368
368
return s * z ;
369
369
}
You can’t perform that action at this time.
0 commit comments