dyld-733.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / rpath-loader_path-dlopen / foo.c
1 #include <stdbool.h>
2 #include <stdlib.h>
3 #include <dlfcn.h>
4
5 bool foo()
6 {
7 return (dlopen("./libbar.dylib", RTLD_NOW) != NULL);
8 }