Mention IFUNC enhancements to testsuite in NEWS.
[platform/upstream/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 }