]> git.saurik.com Git - apple/ld64.git/blob - ld64-134.9/unit-tests/test-cases/duplicate_symbols/main_extern.c
b78ea48c61118f5e4ccd7118b9251e62ec9b9e52
[apple/ld64.git] / ld64-134.9 / unit-tests / test-cases / duplicate_symbols / main_extern.c
1 /*
2 This file references an extern function c() that lives in
3 a separate compilation unit that also has a() and b().
4 */
5
6 extern void c();
7
8 void a() {
9 }
10
11 void b() {
12 }
13
14 int main() {
15 c();
16 }