blob: 352a76b584f02dcb943b071eadcd3a57cd5111af [file] [log] [blame]
/* Simple program to help exercise gdb's convenience variables. */
typedef void *ptr;
ptr p = &p;
static void
foo_void (void)
{
}
static int
foo_int (void)
{
return 0;
}
int
main ()
{
p = &p;
return 0;
}