mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 08:47:41 +01: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 ();
|
|
}
|