old-cross-binutils/gdb/testsuite/gdb.base/twice.c
1994-06-07 01:57:15 +00:00

16 lines
129 B
C

int nothing ()
{
int x = 3 ;
return x ;
}
main ()
{
int y ;
y = nothing () ;
printf ("hello\n") ;
}