]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / breakpoint / breakpoint_language / main.cpp
1 #include <stdio.h>
2 extern "C" int func_from_c();
3 extern int func_from_cpp();
4
5 int
6 main()
7 {
8     func_from_c();
9     func_from_cpp();
10     return 0;
11 }