universally apply our cflags (no vsx, no altivec..)
[glibc.git] / elf / reldep7mod2.c
1 int foo (void) __attribute__ ((weak));
2 int
3 foo (void)
4 {
5 return 2;
6 }
7
8 int
9 mod2_bar (void)
10 {
11 return foo ();
12 }