mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 03:52:59 +00:00
30 lines
352 B
C
30 lines
352 B
C
|
static int
|
||
|
one (void)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
minus_one (void)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
void * foo_ifunc (void) __asm__ ("foo");
|
||
|
__asm__(".type foo, %gnu_indirect_function");
|
||
|
|
||
|
void *
|
||
|
foo_ifunc (void)
|
||
|
{
|
||
|
return one;
|
||
|
}
|
||
|
|
||
|
void * bar_ifunc (void) __asm__ ("bar");
|
||
|
__asm__(".type bar, %gnu_indirect_function");
|
||
|
|
||
|
void *
|
||
|
bar_ifunc (void)
|
||
|
{
|
||
|
return minus_one;
|
||
|
}
|