brintos

brintos / llvm-project-archived public Read only

0
0
Text · 165 B · afe962f Raw
16 lines · c
1#include <stdio.h>2 3void4doSomething()5{6  printf ("Set a breakpoint here.\n");7  printf ("Need a bit more code.\n");8}9 10int11main()12{13  doSomething();14  return 0;15}16