• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 extern int undefined_variable;
2 
other_local_function(int variable)3 static void other_local_function(int variable) { (void)variable; }
4 
local_function()5 static void local_function(){
6 	other_local_function(undefined_variable);
7 }
8