mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
12 lines
159 B
C
12 lines
159 B
C
int foo (int x) __attribute__ ((ifunc ("resolve_foo")));
|
|
|
|
static int foo_impl(int x)
|
|
{
|
|
return x;
|
|
}
|
|
|
|
void *resolve_foo (void)
|
|
{
|
|
return (void *) foo_impl;
|
|
}
|