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