aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/72 shared subproject/a.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/72 shared subproject/a.c')
-rw-r--r--test cases/common/72 shared subproject/a.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/common/72 shared subproject/a.c b/test cases/common/72 shared subproject/a.c
new file mode 100644
index 0000000..7510a1b
--- /dev/null
+++ b/test cases/common/72 shared subproject/a.c
@@ -0,0 +1,13 @@
+#include<assert.h>
+char func_b(void);
+char func_c(void);
+
+int main(void) {
+ if(func_b() != 'b') {
+ return 1;
+ }
+ if(func_c() != 'c') {
+ return 2;
+ }
+ return 0;
+}