aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/86 prelinking/file1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/86 prelinking/file1.c')
-rw-r--r--test cases/unit/86 prelinking/file1.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test cases/unit/86 prelinking/file1.c b/test cases/unit/86 prelinking/file1.c
new file mode 100644
index 0000000..9f0e265
--- /dev/null
+++ b/test cases/unit/86 prelinking/file1.c
@@ -0,0 +1,14 @@
+#include<public_header.h>
+#include<private_header.h>
+
+int public_func() {
+ return round1_a();
+}
+
+int round1_a() {
+ return round1_b();
+}
+
+int round2_a() {
+ return round2_b();
+}