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

18 lines
161 B
C
Raw Normal View History

1999-06-28 18:06:02 +02:00
#include <stdio.h>
int nothing ()
{
int x = 3 ;
return x ;
}
1999-06-28 18:06:02 +02:00
int main ()
{
int y ;
y = nothing () ;
printf ("hello\n") ;
1999-06-28 18:06:02 +02:00
return 0;
}