]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/twice.c
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / twice.c
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 }