• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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()9 int test_number()
10 {
11 	return test_number2();
12 }
13