mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
11 lines
107 B
C
11 lines
107 B
C
|
int global_var = 4;
|
||
|
int other_var = 2;
|
||
|
|
||
|
extern int function (void);
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
return function ();
|
||
|
}
|