mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2025-05-31 22:44:39 +00:00
8 lines
81 B
C
8 lines
81 B
C
|
void caller() {
|
||
|
my_func(0xdede);
|
||
|
}
|
||
|
|
||
|
int my_func(int arg) {
|
||
|
return arg;
|
||
|
}
|