diff options
Diffstat (limited to 'elf/testobj2.c')
-rw-r--r-- | elf/testobj2.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/elf/testobj2.c b/elf/testobj2.c new file mode 100644 index 0000000..5c89d33 --- /dev/null +++ b/elf/testobj2.c @@ -0,0 +1,11 @@ +int +obj2func1 (int a __attribute__ ((unused))) +{ + return 43; +} + +int +obj2func2 (int a) +{ + return obj1func1 (a) + 10; +} |