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