1 extern int undefined_variable; 2 void undefined_function(int); 3 4 local_function()5static void local_function(){ 6 undefined_function(undefined_variable); 7 } 8
1 extern int undefined_variable; 2 void undefined_function(int); 3 4 local_function()5static void local_function(){ 6 undefined_function(undefined_variable); 7 } 8