blob: d324a82d5eaac260f260fbe6a20cfcfdc9a4128f [file] [log] [blame]
/* Test STT_GNU_IFUNC symbol reference in a shared library. */
extern int foo (void);
typedef int (*foo_p) (void);
extern foo_p get_foo_p (void);
extern int call_foo (void);
extern foo_p foo_ptr;
foo_p
get_foo_p (void)
{
return foo_ptr;
}
int
call_foo (void)
{
return foo ();
}