summaryrefslogtreecommitdiffstats
path: root/test cases/common/121 object only target/prog.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test cases/common/121 object only target/prog.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test cases/common/121 object only target/prog.c b/test cases/common/121 object only target/prog.c
new file mode 100644
index 0000000..a27663b
--- /dev/null
+++ b/test cases/common/121 object only target/prog.c
@@ -0,0 +1,11 @@
+int func1_in_obj(void);
+int func2_in_obj(void);
+int func3_in_obj(void);
+int func4_in_obj(void);
+int func5_in_obj(void);
+int func6_in_obj(void);
+
+int main(void) {
+ return func1_in_obj() + func2_in_obj() + func3_in_obj()
+ + func4_in_obj() + func5_in_obj() + func6_in_obj();
+}