Sign in
llvm
/
llvm-project.git
/
refs/heads/main
/
.
/
lldb
/
test
/
API
/
commands
/
target
/
modules
/
lookup
/
main.c
blob: afe962f30916c9e576b38252dff8b7f6918d0a62 [
file
] [
edit
]
#include
<stdio.h>
void
doSomething
()
{
printf
(
"Set a breakpoint here.\n"
);
printf
(
"Need a bit more code.\n"
);
}
int
main
()
{
doSomething
();
return
0
;
}