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