This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
jeremy
/
os-tutorial
mirror da
https://github.com/cfenollosa/os-tutorial
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Ramo (Branch):
master
Rami (Branch)
Tag
master
os-tutorial
/
12-kernel-c
/
functioncalls.c
functioncalls.c
81 B
Permalink
Cronologia
Originale
1
2
3
4
5
6
7
void caller() {
my_func(0xdede);
}
int my_func(int arg) {
return arg;
}