1#include <stdio.h>
2extern "C" int func_from_c();
3extern int func_from_cpp();
4
5int main() {
6 func_from_c();
7 func_from_cpp();
8 return 0;
9}
10

Provided by KDAB

Privacy Policy
Improve your Profiling and Debugging skills
Find out more

source code of lldb/test/API/symbol_ondemand/breakpoint_language/main.cpp