elf: Make glibc.rtld.enable_secure ignore alias environment variables
[glibc.git] / elf / tst-dl_find_object-mod2.c
blob3dad31c97c906bafe191250c87e26ed2fb8d8aa7
1 #include <dlfcn.h>
3 char mod2_data;
5 void
6 mod2_function (void (*f) (void))
8 /* Make sure this is not a tail call and unwind information is
9 therefore needed. */
10 f ();
11 f ();
14 /* Used to verify that _dl_find_object after static dlopen works. */
15 void *find_object = _dl_find_object;