1
0

functioncalls.c 81 B

1234567
  1. void caller() {
  2. my_func(0xdede);
  3. }
  4. int my_func(int arg) {
  5. return arg;
  6. }