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