Skip to content

Commit

Permalink
fix test_sincos for doubles
Browse files Browse the repository at this point in the history
  • Loading branch information
cjones051073 committed Aug 11, 2019
1 parent 5dd8c17 commit ed9a61c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_sincos.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ int main() {
__sincosf( xf, &sf, &cf );
printf( "__sincosf(%f) = %f %f\n", xf, sf, cf );

double xd, fd, cd;
double xd, sd, cd;
xd = 0.9;
__sincos( xd, &fd, &cd );
printf( "__sincos(%f) = %f %f\n", xf, sf, cf );
__sincos( xd, &sd, &cd );
printf( "__sincos(%f) = %f %f\n", xd, sd, cd );

return 0;
}
Expand Down

0 comments on commit ed9a61c

Please sign in to comment.