Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
77db4a855239049488e09f28c6665fdb3b51ef90
/
.
/
lldb
/
test
/
functionalities
/
breakpoint
/
breakpoint_command
/
a.c
blob: 870e4a6ab166e2ef20f8e1a208762292826fb739 [
file
] [
log
] [
blame
]
Jim Ingham
87df91b
2011-09-23 00:54:11 +0000
[
diff
] [
blame
]
1
#include
<stdio.h>
2
3
int
4
a_MyFunction
()
5
{
6
// Set a breakpoint here.
7
printf
(
"a is about to return 10.\n"
);
8
return
10
;
9
}