binutils-gdb/ld/testsuite/ld-elf/indirect6a.c

10 lines
87 B
C

extern void foo (long *);
long bar = 1;
int
main (void)
{
foo (&bar);
return 0;
}