1#include <unistd.h>
2
3int
4SomethingToCall() {
5 return 100;
6}
7
8int
9main()
10{
11 while (1) {
12 sleep(seconds: 1);
13 }
14 return SomethingToCall();
15}
16

source code of lldb/test/API/python_api/run_locker/main.c