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