Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / python_api / run_locker / main.c
blob2cdb68c740da1aaf167d911fa3df543f2dbfc543
1 #include <unistd.h>
3 int
4 SomethingToCall() {
5 return 100;
8 int
9 main()
11 while (1) {
12 sleep(1);
14 return SomethingToCall();