diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp b/lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp new file mode 100644 index 00000000000..41f4f26079a --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/commands/frame/language/other.cpp @@ -0,0 +1,10 @@ +#include "other.h" + +extern "C" void some_func(); + +void +Other::DoSomething() +{ + some_func(); +} + |