mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
8 lines
81 B
C
8 lines
81 B
C
void caller() {
|
|
my_func(0xdede);
|
|
}
|
|
|
|
int my_func(int arg) {
|
|
return arg;
|
|
}
|