gdb-msvc/gdb/testsuite/gdb.base/pc-fp.c

15 lines
105 B
C
Raw Normal View History

2020-06-18 10:11:10 +02:00
#include <stdio.h>
void
foo (int i)
{
i++;
printf ("In foo %d\n", i);
}
int
main ()
{
foo (1);
}