Revert "elf: Refuse to dlopen PIE objects [BZ #24323]"
[platform/upstream/glibc.git] / elf / reldep6mod4.c
1 int foo (void);
2 int weak (void);
3
4 int foo (void)
5 {
6   return 10;
7 }
8
9 int weak (void)
10 {
11   return 30;
12 }