• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "other.h"
2 
3 extern "C" void some_func();
4 
5 void
DoSomething()6 Other::DoSomething()
7 {
8   some_func();
9 }
10 
11