diff options
Diffstat (limited to 'test cases/common/73 shared subproject 2/a.c')
-rw-r--r-- | test cases/common/73 shared subproject 2/a.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/common/73 shared subproject 2/a.c b/test cases/common/73 shared subproject 2/a.c new file mode 100644 index 0000000..7510a1b --- /dev/null +++ b/test cases/common/73 shared subproject 2/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; +} |