blob: 74654cb976a8863bd56f4ea297d2937d9a6e4416 [file] [log] [blame]
#include <stdio.h>
void
call_me(int value) {
printf("called with %d\n", value); // Set another here.
}
int
main(int argc, char **argv)
{
call_me(argc); // Set a breakpoint here.
printf("This just spaces the two calls\n");
call_me(argc); // Run here to step over again.
printf("More spacing\n");
return 0; // Make sure we get here on last continue
}