6 lines
94 B
C
6 lines
94 B
C
int __a_global = 1;
|
|
|
|
int a(int arg) {
|
|
int result = arg + __a_global;
|
|
return result;
|
|
}
|