brintos

brintos / llvm-project-archived public Read only

0
0
Text · 363 B · 74654cb Raw
17 lines · c
1#include <stdio.h>2 3void4call_me(int value) {5  printf("called with %d\n", value); // Set another here.6}7 8int9main(int argc, char **argv)10{11  call_me(argc); // Set a breakpoint here.12  printf("This just spaces the two calls\n");13  call_me(argc); // Run here to step over again.14  printf("More spacing\n");15  return 0; // Make sure we get here on last continue16}17