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