blob: ebd8ae11a73a9e2a85e785f3a5a05ea19d0c839a [file] [log] [blame]
#include <stdio.h>
int
call_me(int input)
{
return printf("I was called: %d.\n", input);
}
int
main()
{
int test_var = 10;
printf ("Set a breakpoint here: %d.\n", test_var);
return call_me(100);
}