]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/expression_command/options/foo.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / expression_command / options / 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 }