1
0
mirror of https://github.com/cfenollosa/os-tutorial.git synced 2024-10-27 20:34:19 +00:00
cfenollosa_os-tutorial/12-kernel-c/functioncalls.c
Carlos Fenollosa 0fc3af3f22 lesson 12
2014-10-15 12:21:46 +02:00

8 lines
81 B
C

void caller() {
my_func(0xdede);
}
int my_func(int arg) {
return arg;
}