Home | History | Annotate | Download | only in sample
      1 extern "C" {
      2 void foo();
      3 void bar() {}
      4 }
      5 
      6 namespace bar_namespace {
      7 
      8 void SomeExternalFunction();
      9 
     10 void SomeFunction() {
     11   foo();
     12   SomeExternalFunction();
     13 }
     14 
     15 }  // namespace bar_namespace
     16