arm: Define elf_backend_extern_protected_data to 0 [PR 18705]
[binutils-gdb.git] / ld / testsuite / ld-x86-64 / pr21997-1b.c
1 #include <stdio.h>
2
3 extern int protected;
4 extern int get_protected (void);
5
6 int
7 main ()
8 {
9 if (protected == get_protected ())
10 printf ("PASS\n");
11
12 return 0;
13 }