blob: 51a675581c41e2a2f171e3a0a0008d09f81b8833 [file] [log] [blame]
int a;
int *b = &a, **c = &b;
int
main ()
{
int **d = &b;
*d = 0;
}