1 static int file_static = 1234; 2 int global_from_primary = 5678; 3 4 int function_from_primary() 5 { 6 garbage(); 7 } 8 9 force_generation_of_export_stub() 10 { 11 _start(); /* force main module to have an export stub for _start() */ 12 } 13
1 static int file_static = 1234; 2 int global_from_primary = 5678; 3 4 int function_from_primary() 5 { 6 garbage(); 7 } 8 9 force_generation_of_export_stub() 10 { 11 _start(); /* force main module to have an export stub for _start() */ 12 } 13