blob: 8eadd42109f6abc1fb20541dd53fede83ece077a [file] [log] [blame]
#include <stdio.h>
extern int copy;
extern int get_copy (void);
extern int* get_copy_p (void);
int
main ()
{
if (copy == get_copy () && &copy == get_copy_p ())
printf ("PASS\n");
return 0;
}