ld: Update function prototypes for compilers defaulting to -std=gnu23
[binutils-gdb.git] / ld / testsuite / ld-x86-64 / pr19784b.c
blob8ea7ce2c86956c17879138b67d43918fff3d51fe
1 int foo (int x) __attribute__ ((ifunc ("resolve_foo")));
3 static int foo_impl(int x)
5 return x;
8 void *resolve_foo (void)
10 return (void *) foo_impl;