rtld: properly handle root directory in load path (bug 30435)
[platform/upstream/glibc.git] / elf / tst-dl_find_object-mod8.c
1 char mod8_data;
2
3 void
4 mod8_function (void (*f) (void))
5 {
6   /* Make sure this is not a tail call and unwind information is
7      therefore needed.  */
8   f ();
9   f ();
10 }