brintos

brintos / llvm-project-archived public Read only

0
0
Text · 106 B · ca94bc9 Raw
14 lines · c
1#include <stdio.h>2 3void4call_me() {5  printf("I was called");6}7 8int9main()10{11  call_me();12  return 0;13}14