1*56bb7041Schristos #include <stdio.h>
2*56bb7041Schristos 
3*56bb7041Schristos extern int copy;
4*56bb7041Schristos extern int get_copy (void);
5*56bb7041Schristos extern int* get_copy_p (void);
6*56bb7041Schristos 
7*56bb7041Schristos int
main()8*56bb7041Schristos main ()
9*56bb7041Schristos {
10*56bb7041Schristos   if (copy == get_copy () && &copy == get_copy_p ())
11*56bb7041Schristos     printf ("PASS\n");
12*56bb7041Schristos 
13*56bb7041Schristos   return 0;
14*56bb7041Schristos }
15