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