]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/ifuncmod6.c
Simplify tzfile fstat failure code
[thirdparty/glibc.git] / elf / ifuncmod6.c
CommitLineData
3c30afc8
L
1/* Test STT_GNU_IFUNC symbol reference in a shared library. */
2
3extern int foo (void);
4
5typedef int (*foo_p) (void);
6
7foo_p foo_ptr = foo;
8
9foo_p
10get_foo_p (void)
11{
12 return foo_ptr;
13}
14
15foo_p
16get_foo (void)
17{
18 return foo;
19}