Updated Malay translation for the bfd sub-directory
[binutils-gdb.git] / ld / testsuite / ld-ifunc / pr23169c.c
blobb5301082136de35ccf9ca35d37795278d2fd3392
1 static int
2 ifunc (void)
4 return 0xbadbeef;
7 void func(void) __attribute__((ifunc("resolve_func")));
9 static void *
10 resolve_func (void)
12 return ifunc;