linux-x86.exp: Compile with -I../bfd
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr13201.c
CommitLineData
af55061b
L
1#include <math.h>
2#include <stdio.h>
3#include <stdlib.h>
4
5int
6main(int argc, char **argv)
7{
8 double x;
9 if (argc > 1)
10 x = atof (argv[1]);
11 else
12 x = 3;
13 x = sin (x);
14 if (x > 0)
15 printf("OK\n");
16 return 0;
17}
This page took 0.413443 seconds and 4 git commands to generate.