
int a;
extern int b;
extern int c;

xx()
{
    a = 1;
    printf("%d %d %d\n", a, b, c);
}
