xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/pc-fp.c (revision 0a3071956a3a9fdebdbf7f338cf2d439b45fc728)
1 #include <stdio.h>
2 
3 void
4 foo (int i)
5 {
6   i++;
7   printf ("In foo %d\n", i);
8 }
9 
10 int
11 main ()
12 {
13   foo (1);
14 }
15