Sign in
android
/
toolchain
/
llvm-project
/
refs/heads/kotlin-native-toolchain
/
.
/
lldb
/
test
/
API
/
commands
/
target
/
stop-hooks
/
main.c
blob: d08ad14776b5adc373d275845484097067982fde [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
static
int
g_var
=
0
;
int
step_out_of_me
()
{
return
g_var
;
// Set a breakpoint here and step out.
}
int
main
()
{
return
step_out_of_me
();
}