show all threads
[tridge/junkcode.git] / tmath.c
1 #include <stdio.h>
2 #include <math.h>
3
4
5 main()
6 {
7   int i;
8   double d;
9   for (i=0;i<10000;i++)
10     d += sin(1.0*i);
11 }