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