]> git.saurik.com Git - apple/dyld.git/blob - unit-tests/test-cases/read-only-import-shared-cache-coalesce/main.c
dyld-360.19.tar.gz
[apple/dyld.git] / unit-tests / test-cases / read-only-import-shared-cache-coalesce / main.c
1
2 #include <dlfcn.h>
3
4 int main()
5 {
6 // dynamically load libfoo.dylib which depends on libstdc++.dylib
7 // being re-bound to libfoo's operator new.
8 dlopen("libfoo.dylib", RTLD_LAZY);
9 return 0;
10 }
11
12