mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
15 lines
202 B
C
15 lines
202 B
C
/* Test global variable initialized to hidden STT_GNU_IFUNC symbol. */
|
|
|
|
#include <assert.h>
|
|
|
|
extern void bar (void);
|
|
extern int didit;
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
bar ();
|
|
assert (didit == 1);
|
|
return 0;
|
|
}
|