opnsense-src/packages/Python/lldbsuite/test/lang/cpp/call-function/main.cpp

12 lines
136 B
C++
Raw Normal View History

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