brintos

brintos / llvm-project-archived public Read only

0
0
Text · 131 B · 13f6e29 Raw
9 lines · c
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