This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
jeremy
/
os-tutorial
kopia lustrzana
https://github.com/cfenollosa/os-tutorial
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Gałąź:
master
Gałęzie
Tagi
master
os-tutorial
/
12-kernel-c
/
functioncalls.c
functioncalls.c
81 B
Bezpośredni odnośnik
Historia
Czysty
1
2
3
4
5
6
7
void caller() {
my_func(0xdede);
}
int my_func(int arg) {
return arg;
}