]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/read-only-relocs/test_bind.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / read-only-relocs / test_bind.c
1
2 extern int b;
3 extern void func();
4
5 int test_bind()
6 {
7 func();
8 return b;
9 }
10