Fix C++ template function matching in cooked index
[binutils-gdb.git] / gdb / testsuite / gdb.base / gdbvars.c
blob46fa84b122249e51349f283f01aa1abf6e402e2e
1 /* Simple program to help exercise gdb's convenience variables. */
3 typedef void *ptr;
5 ptr p = &p;
7 void
8 foo_void (void)
12 int
13 foo_int (void)
15 return 0;
18 int
19 main ()
21 p = &p;
22 return 0;