xref: /llvm-project/lldb/test/API/commands/expression/persistent_ptr_update/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)

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