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_number2null9 int test_number2()
10 {
11 	return test_function();
12 }
13