16 lines
363 B
C
16 lines
363 B
C
#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
|
|
}
|