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