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