* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git] / ld / testsuite / ld-gc / pr11218-2.c
blob5f158026f83b570255edca143612fb201a10bbb4
1 extern void foo_in_so(void);
2 extern void unresolved_detected_at_runtime_not_at_linktime (void);
4 void call_unresolved(void)
6 unresolved_detected_at_runtime_not_at_linktime();
9 int main(int argc, char *argv[])
11 foo_in_so();
13 return 0;