1 #include "stub.h" 2 foo(char * c)3 int foo(char *c) { 4 printf(""); 5 __attribute__((musttail)) return puts(c); 6 } 7 main()8 int main() { return foo("a"); } 9