ld: Update function prototypes for compilers defaulting to -std=gnu23
[binutils-gdb.git] / ld / testsuite / ld-x86-64 / pr22001-1c.c
blob8fd925c8f76135ca3c480927727272d8552dbb29
1 #include <stdio.h>
3 extern int copy;
4 extern int* get_copy_p (void);
6 int main()
8 if (&copy == get_copy_p ())
9 printf ("PASS\n");
11 return 0;