]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/lto-rename_section/main.c
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-rename_section / main.c
CommitLineData
599556ff
A
1
2extern const char** myp;
3
4
5const char** entry(int i) {
6 if ( i ) {
7 *myp = "help";
8 }
9 return myp;
10}
11