blob: 68647b6a898460b79c149c7effa86521801621ec [file] [log] [blame]
#include <stdio.h>
static int foo (int input)
{
return input * 5;
}
int blubby (int input)
{
printf ("I got input: %d\n", input);
if (input > 5)
return foo (input);
else
return 5;
}