blob: 09eb2ddf5a23d92c502c999a89bbd5d8470d9b6a [file] [log] [blame]
#include <stdio.h>
int nothing ()
{
int x = 3 ;
return x ;
}
int main ()
{
int y ;
#ifdef usestubs
set_debug_traps();
breakpoint();
#endif
y = nothing () ;
printf ("hello\n") ;
return 0;
}