xref: /llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/main.c (revision 5dcf5cc0e0b462be99d1ae3d993ec11b039097b8)
1 #include <stdio.h>
2 
3 int main (int argc, char const *argv[], char const *envp[])
4 {
5     puts("stop here"); // Set breakpoint here
6     puts("hello");
7     puts("Set tid-specific breakpoint here");
8     return 0;
9 }
10