blob: 13f6e29c6077477b30d356ee90779c9314450d08 [file] [log] [blame] [edit]
#include "stub.h"
int foo(char *c) {
printf("");
__attribute__((musttail)) return puts(c);
}
int main() { return foo("a"); }