1void* foo(void *p)2{3 return p; // break here4}5 6int main() {7 while (1) {8 foo(0);9 }10 return 0;11}12