bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/call-function/main.cpp
2025-02-14 19:21:04 +01:00

11 lines
136 B
C++

#include <stdio.h>
int a_function_to_call()
{
return 0;
}
int main()
{
printf("%d\n", a_function_to_call()); // breakpoint
}