Sign in
android
/
toolchain
/
rustc
/
2f380c1f7952c665764c26a26842375bb02f5296
/
.
/
src
/
llvm-project
/
lldb
/
test
/
API
/
python_api
/
debugger
/
main.cpp
blob: 4b4ca68ab87dc0db5e0a9b66c1aa38dd5b8f3aed [
file
]
// This simple program is to test the lldb Python API SBDebugger.
int
func
(
int
val
)
{
return
val
-
1
;
}
int
main
(
int
argc
,
char
const
*
argv
[])
{
return
func
(
argc
);
}