aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/x86/tst-ifunc-cpu1-main.c
blob: 37c16e2e1e0ffbb69393f274bb1ea5158473ad16 (plain)
1
2
3
4
5
6
7
8
9
10
/* Test function pointer to local STT_GNU_IFUNC function.  */

extern void (*foo_ptr) (void);

int
main (void)
{
  foo_ptr ();
  return 0;
}