Fix spurious failures in ld-plugin/lto.exp
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / lto-8a.c
1 #include <stdio.h>
2
3 extern void foo(char);
4
5 void baz(int i)
6 {
7 printf ("baz: %d\n", i);
8 }
9
10 int main(void)
11 {
12 foo(42);
13 return 0;
14 }
This page took 0.03363 seconds and 4 git commands to generate.