]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/tentative-to-real-hidden/test.c
ld64-84.1.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / tentative-to-real-hidden / test.c
CommitLineData
2f2f92e4
A
1
2// tentative definitions
3int tent1;
4int tent2;
5int __attribute__((visibility("hidden"))) tent3;
6
7// initialized to point to tentative definitions
8int* pa = &tent1;
9int* pb = &tent2;
10int* pc = &tent3;
11