summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp
blob: b7d00a6020290471bd9f550df1f51b7ba99e8087 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
extern "C" int func_from_c();
extern int func_from_cpp();

int
main()
{
    func_from_c();
    func_from_cpp();
    return 0;
}
OpenPOWER on IntegriCloud