]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/local-symbol-partial-stripping/main.c
ld64-85.2.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / local-symbol-partial-stripping / main.c
1 #include <stdio.h>
2
3 extern int myglobal;
4 extern void myfunction(int);
5
6 int main()
7 {
8 myfunction(myglobal);
9 return 0;
10 }
11