xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/test.c (revision c7cbf32f5770c5eec2a2dd6eb7cf3153e654ed08)

foo()1 void foo() {
2   int *i = 0;
3   *i = 1;
4 }
5 
bar()6 void bar() { foo(); }
7 
main(int argc,char ** argv)8 int main(int argc, char **argv) { bar(); }
9