7 lines
80 B
C
7 lines
80 B
C
|
void caller() {
|
||
|
my_func(0xdede);
|
||
|
}
|
||
|
|
||
|
int my_func(int arg) {
|
||
|
return arg;
|
||
|
}
|