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

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

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