xref: /llvm-project/lldb/test/API/commands/frame/language/other.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
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