]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/dso_handle/test.c
ld64-236.3.tar.gz
[apple/ld64.git] / unit-tests / test-cases / dso_handle / test.c
CommitLineData
b2fa67a8
A
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
11int main()
12{
13 printf("dso_handle=%p\n", __dso_handle);
14 return 0;
15}
16