1 #include "global.h" 2 #include "dlopen_weak_deps.h" 3 test_functionnull4__attribute__((weak)) int test_function() 5 { 6 return LOCAL_VALUE; 7 } 8 test_number2null9int test_number2() 10 { 11 return test_function(); 12 } 13
1 #include "global.h" 2 #include "dlopen_weak_deps.h" 3 test_functionnull4__attribute__((weak)) int test_function() 5 { 6 return LOCAL_VALUE; 7 } 8 test_number2null9int test_number2() 10 { 11 return test_function(); 12 } 13