ld: Add -fno-lto to linker tests
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr24406-2a.c
CommitLineData
6fe014bc
L
1#include <stdio.h>
2
3extern int cook(void);
4
5int __wrap_cook(void)
6{
7 puts ("PASS");
8 return 0;
9}
10
11int main()
12{
13 if (cook () == -1)
14 __builtin_abort ();
15
16 return 0;
17}
This page took 0.087794 seconds and 4 git commands to generate.