]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/lto-duplicate_symbols/static.c
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-duplicate_symbols / static.c
1 static int same_name(int i)
2 {
3 return i + 10;
4 }
5
6 int other()
7 {
8 return same_name(100);
9 }