Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-elf/indirect-extern-access-1b.c

13 lines
143 B
C

#include <stdio.h>
extern int indirect_extern_access;
int
main (void)
{
if (indirect_extern_access == 1)
puts ("PASS");
return 0;
}