cfenollosa_os-tutorial/12-kernel-c/functioncalls.c

8 lines
81 B
C
Raw Normal View History

2014-10-15 10:21:46 +00:00
void caller() {
my_func(0xdede);
}
int my_func(int arg) {
return arg;
}