• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "global.h"
2 
func()3 __attribute__((weak)) int func()
4 {
5 	return GLOBAL_VALUE;
6 }
7 
global_caller()8 int global_caller()
9 {
10 	return func();
11 }
12