aboutsummaryrefslogtreecommitdiff
path: root/test/elf_parser/test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/elf_parser/test.cc')
-rw-r--r--test/elf_parser/test.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/elf_parser/test.cc b/test/elf_parser/test.cc
new file mode 100644
index 0000000..7cc71dd
--- /dev/null
+++ b/test/elf_parser/test.cc
@@ -0,0 +1,7 @@
+extern "C" int exported_func_c(int x) {
+ return x + 1;
+}
+
+int exported_func_cpp(int x) {
+ return x + 1;
+}