mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
13 lines
176 B
C
13 lines
176 B
C
/* Test global variable initialized to hidden STT_GNU_IFUNC symbol. */
|
|
|
|
extern void foo (void);
|
|
void (*f) (void) = &foo;
|
|
|
|
extern void bar (void);
|
|
|
|
void
|
|
bar (void)
|
|
{
|
|
f ();
|
|
}
|