Skip to content

Commit 522eacc

Browse files
committed
Merge pull request #29 from JuliaLang/whoopsies
Remove debug printf()
2 parents 30852ca + 4846e7d commit 522eacc

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/s_sincos.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ sincos(double x, double * s, double * c)
118118
/*argument reduction needed*/
119119
else {
120120
double k_c, k_s;
121-
printf( "bleh?\n");
122121

123122
/* Calculate remainer, then sub out to kernel */
124123
int32_t n = __ieee754_rem_pio2(x,y);
@@ -148,4 +147,4 @@ sincos(double x, double * s, double * c)
148147

149148
#if (LDBL_MANT_DIG == 53)
150149
__weak_reference(sincos, sincosl);
151-
#endif
150+
#endif

0 commit comments

Comments
 (0)