]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/duplicate_symbols/main_no_extern.c
ld64-305.tar.gz
[apple/ld64.git] / unit-tests / test-cases / duplicate_symbols / main_no_extern.c
1 /*
2 This file contains symbols that are duplicated in another file,
3 but does not reference anything that would pull in the duplicates.
4 */
5
6 void a() {
7 }
8
9 void b() {
10 }
11
12 int main() {
13 }