]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-dl_find_object-mod2.c
install.texi: Build was tested with binutils 2.41 (just released)
[thirdparty/glibc.git] / elf / tst-dl_find_object-mod2.c
CommitLineData
5d28a896
FW
1#include <dlfcn.h>
2
3char mod2_data;
4
5void
6mod2_function (void (*f) (void))
7{
8 /* Make sure this is not a tail call and unwind information is
9 therefore needed. */
10 f ();
11 f ();
12}
13
14/* Used to verify that _dl_find_object after static dlopen works. */
15void *find_object = _dl_find_object;