Revert "elf: Refuse to dlopen PIE objects [BZ #24323]"
[platform/upstream/glibc.git] / elf / tst-dl_find_object-mod6.c
1 /* Large to get different layouts.  */
2 char mod6_data[4096];
3
4 void
5 mod6_function (void (*f) (void))
6 {
7   /* Make sure this is not a tail call and unwind information is
8      therefore needed.  */
9   f ();
10   f ();
11 }