Files
binutils-gdb/gdb/testrec.c
gdb-2.4+.aux.coff 7b4ac7e1ed gdb-2.4+.aux.coff
2012-06-03 15:36:30 +01:00

13 lines
79 B
C

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