old-cross-binutils/gdb/testsuite/gdb.base/twice.c

17 lines
129 B
C
Raw Normal View History

1994-06-07 01:57:15 +00:00
int nothing ()
{
int x = 3 ;
return x ;
}
main ()
{
int y ;
y = nothing () ;
printf ("hello\n") ;
}