lesson 12

This commit is contained in:
Carlos Fenollosa
2014-10-15 12:21:46 +02:00
parent dec0890a90
commit 0fc3af3f22
4 changed files with 21 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
void caller() {
my_func(0xdede);
}
int my_func(int arg) {
return arg;
}