xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/twice.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1 #include <stdio.h>
nothing()2 int nothing ()
3 
4 {
5     int x = 3 ;
6     return x ;
7 }
8 
9 
main()10 int main ()
11 
12 {
13     int y ;
14     y = nothing () ;
15     printf ("hello\n") ;
16     return 0;
17 }
18