[gdb/testsuite] Factor out lib/valgrind.exp
[external/binutils.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 }