]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/reldep7mod1.c
Update copyright dates not handled by scripts/update-copyrights.
[thirdparty/glibc.git] / elf / reldep7mod1.c
1 int foo (void) __attribute__ ((weak));
2 int
3 foo (void)
4 {
5 return 1;
6 }
7
8 int
9 mod1_bar (void)
10 {
11 return foo ();
12 }