old-cross-binutils/gdb/testrec.c
2012-06-03 15:36:30 +01:00

12 lines
79 B
C

main ()
{
foo (4);
}
foo (x)
int x;
{
if (x > 0)
foo (x - 1);
}