Sign in
rust
/
rust-lang
/
llvm-project
/
35c537490f7804c0a68fcabcd20ecf96357b74ff
/
.
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
lang
/
cpp
/
call-function
/
main.cpp
blob: 61a5e9d21abb27e75da5b3611a2beaa119aa1579 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
a_function_to_call
()
{
return
0
;
}
int
main
()
{
printf
(
"%d\n"
,
a_function_to_call
());
// breakpoint
}