1 #include "dlopen_weak_deps.h" 2 #include "global.h" 3 test_function()4__attribute__((weak)) int test_function() 5 { 6 return GLOBAL_VALUE; 7 } 8 test_number()9int test_number() 10 { 11 return test_number2(); 12 } 13
1 #include "dlopen_weak_deps.h" 2 #include "global.h" 3 test_function()4__attribute__((weak)) int test_function() 5 { 6 return GLOBAL_VALUE; 7 } 8 test_number()9int test_number() 10 { 11 return test_number2(); 12 } 13