added getName method in SBModule.h and .cpp in order to get the name of the module from m_object_name. --------- Co-authored-by: Bar Soloveychik <barsolo@fb.com>
12 lines
165 B
C
12 lines
165 B
C
int __a_global = 1;
|
|
|
|
int a(int arg) {
|
|
int result = arg + __a_global;
|
|
return result;
|
|
}
|
|
|
|
int aa(int arg1) {
|
|
int result1 = arg1 - __a_global;
|
|
return result1;
|
|
}
|