diff options
Diffstat (limited to 'test/link/common_symbols/a.c')
| -rw-r--r-- | test/link/common_symbols/a.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/link/common_symbols/a.c b/test/link/common_symbols/a.c new file mode 100644 index 0000000000..829a96e507 --- /dev/null +++ b/test/link/common_symbols/a.c @@ -0,0 +1,6 @@ +int i; +int j; + +int add_to_i_and_j(int x) { + return x + i + j; +} |
