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

18 lines
161 B
C

#include <stdio.h>
int nothing ()
{
int x = 3 ;
return x ;
}
int main ()
{
int y ;
y = nothing () ;
printf ("hello\n") ;
return 0;
}