Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
lldb
/
test
/
API
/
tools
/
lldb-dap
/
output
/
main.c
blob: 0cfcf604aa68f75234771aa0a8b4318e260b5eaf [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
#include
<unistd.h>
int
main
()
{
// Ensure multiple partial lines are detected and sent.
printf
(
"abc"
);
printf
(
"def"
);
printf
(
"ghi\n"
);
printf
(
"hello world\n"
);
// breakpoint 1
return
0
;
}