1 #include "dlopen_test_dependency.h" 2 DlopenTestDependencyImpl(void)3__attribute__((weak)) int DlopenTestDependencyImpl(void) 4 { 5 return 0; 6 } 7 DlopenTestDependency(void)8int DlopenTestDependency(void) 9 { 10 return DlopenTestDependencyImpl(); 11 } 12 DlopenTestDependency01()13void DlopenTestDependency01() {}