1 2 3 4 5 6 7 8 9
extern int foo1 (int *b); int __attribute__ ((always_inline)) foo2 (int *b) { int res = foo1 (b); *b += res; return *b; }