]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/dso_handle/test.c
ld64-128.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / dso_handle / test.c
1 #include <stdio.h>
2
3 #if DSO_DEF
4 void* __dso_handle = NULL;
5 #elif DSO_TENT
6 void* __dso_handle;
7 #else
8 extern void* __dso_handle;
9 #endif
10
11 int main()
12 {
13 printf("dso_handle=%p\n", __dso_handle);
14 return 0;
15 }
16