Sign in
◑
Theme
llvm
/
llvm-project
/
4e32fa991ee2c702d64e8db55ece2f01fdd7ffca
/
.
/
lldb
/
test
/
API
/
functionalities
/
breakpoint
/
breakpoint_command
/
a.c
blob: 870e4a6ab166e2ef20f8e1a208762292826fb739 [
file
]
#include
<stdio.h>
int
a_MyFunction
()
{
// Set a breakpoint here.
printf
(
"a is about to return 10.\n"
);
return
10
;
}