glibc/elf/ifuncmod6.c
H.J. Lu 3c30afc862 Add more IFUNC tests.
Mostly tests around not-exported IFUNC functions, IFUNC in statically
linked binaries and PIEs, etc.
2009-06-22 15:07:40 -07:00

20 lines
226 B
C

/* Test STT_GNU_IFUNC symbol reference in a shared library. */
extern int foo (void);
typedef int (*foo_p) (void);
foo_p foo_ptr = foo;
foo_p
get_foo_p (void)
{
return foo_ptr;
}
foo_p
get_foo (void)
{
return foo;
}