]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/elf/X86_64/Inputs/weak.c
Vendor import of lld trunk r233088:
[FreeBSD/FreeBSD.git] / test / elf / X86_64 / Inputs / weak.c
1 int fn()
2 {
3   return 0;
4 }
5
6 void __attribute__((weak)) f()
7 {
8         printf("original f..\n");
9 }
10 int main(void)
11 {
12         f();
13         return 0;
14 }