]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/lto-dynamic_export/main.c
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-dynamic_export / main.c
1
2 __attribute__((visibility("hidden")))
3 void foo() { }
4
5 void bar() { }
6
7
8 int main()
9 {
10 foo();
11 bar();
12
13 return 0;
14 }