summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/target-new-solib-notifications/a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/functionalities/target-new-solib-notifications/a.cpp')
-rw-r--r--lldb/test/API/functionalities/target-new-solib-notifications/a.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/API/functionalities/target-new-solib-notifications/a.cpp b/lldb/test/API/functionalities/target-new-solib-notifications/a.cpp
new file mode 100644
index 000000000000..778b46ed5cef
--- /dev/null
+++ b/lldb/test/API/functionalities/target-new-solib-notifications/a.cpp
@@ -0,0 +1,3 @@
+extern "C" int b_function();
+
+extern "C" int a_function() { return b_function(); }