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