llvm-project/lldb/test/API/functionalities/gdb_remote_client/sleep.cpp

7 lines
102 B
C++

#include <thread>
int main() {
std::this_thread::sleep_for(std::chrono::minutes(1));
return 0;
}