diff options
Diffstat (limited to 'test cases/common/56 object generator/prog.c')
-rw-r--r-- | test cases/common/56 object generator/prog.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/common/56 object generator/prog.c b/test cases/common/56 object generator/prog.c new file mode 100644 index 000000000..60459d6ed --- /dev/null +++ b/test cases/common/56 object generator/prog.c @@ -0,0 +1,7 @@ +int func1_in_obj(); +int func2_in_obj(); +int func3_in_obj(); + +int main(int argc, char **argv) { + return func1_in_obj() + func2_in_obj() + func3_in_obj(); +} |