repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
crypt: Remove manul entry for --enable-crypt
[glibc.git]
/
elf
/
tst-dl_find_object-mod2.c
blob
3dad31c97c906bafe191250c87e26ed2fb8d8aa7
1
#include <dlfcn.h>
2
3
char
mod2_data
;
4
5
void
6
mod2_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. */
15
void
*
find_object
=
_dl_find_object
;