diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/python_api/module_section/c.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/python_api/module_section/c.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/python_api/module_section/c.cpp b/packages/Python/lldbsuite/test/python_api/module_section/c.cpp new file mode 100644 index 0000000..3c87bfe --- /dev/null +++ b/packages/Python/lldbsuite/test/python_api/module_section/c.cpp @@ -0,0 +1,3 @@ +int c_function(int input) { + return input * 3; +} |