]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/mixed/foo.cpp
Vendor import of lldb trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / mixed / foo.cpp
1 namespace ns {
2     int func(void)
3     {
4         return 0;
5     }
6 }
7
8 extern "C" int foo(void)
9 {
10     return ns::func();
11 }