Sign in
android
/
toolchain
/
rustc
/
e40e7362ba4208d45fb88525361a7de2fad4bb91
/
.
/
src
/
llvm-project
/
lldb
/
test
/
API
/
python_api
/
breakpoint
/
main.c
blob: 2677594e622ef0af1f2e4a666978e0ca77349d11 [
file
]
#include
<stdio.h>
void
AFunction
()
{
printf
(
"I am a function.\n"
);
}
int
main
()
{
AFunction
();
return
0
;
}