Files
llvm-project/lldb/test/API/lang/cpp/call-function/main.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
136 B
C++
Raw Normal View History

2013-04-30 22:05:15 +00:00
#include <stdio.h>
int a_function_to_call()
{
return 0;
}
int main()
{
printf("%d\n", a_function_to_call()); // breakpoint
}