]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/symtab-search-order-shlib-1.c
PR 17564: Fix objfile search order for static symbols.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / symtab-search-order-shlib-1.c
1 static int static_global = 42;
2
3 int
4 shlib_1_func (void)
5 {
6 return static_global;
7 }