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