This website works better with JavaScript
Acasă
Explorează
Ajutor
Înregistrare
Autentificare
jeremy
/
os-tutorial
oglindă de
https://github.com/cfenollosa/os-tutorial
Urmărește
1
Stea
0
Bifurcare
0
Fisiere
Probleme
0
Wiki
Ramură:
master
Ramuri
Etichete
master
os-tutorial
/
12-kernel-c
/
functioncalls.c
functioncalls.c
81 B
Permalink
Istoric
Crud
1
2
3
4
5
6
7
void caller() {
my_func(0xdede);
}
int my_func(int arg) {
return arg;
}