Home | History | Annotate | Download | only in ld-plugin
      1 #include <stdio.h>
      2 #include <stdlib.h>
      3 #include <math.h>
      4 
      5 int
      6 main (int argc, char **argv)
      7 {
      8   int d = atoi (argv[1]);
      9   printf ("%f\n", sin (d));
     10   return 0;
     11 }
     12