]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/dead_strip/deadwood.c
ld64-84.1.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / dead_strip / deadwood.c
1
2
3 // deadwood() is local to its linkage unit and is unsed,
4 // so reference to undef() is ok
5
6 extern void undef();
7
8 void dead_wood() __attribute__((visibility("hidden")));
9 void dead_wood() { undef(); }
10
11