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