old-cross-binutils/ld/testsuite/ld-gc/pr11218-2.c
Andreas Schwab 3a072d2c6d * ld/testsuite/ld-gc/pr11218-2.c: Declare
unresolved_detected_at_runtime_not_at_linktime.
2010-11-16 23:41:38 +00:00

14 lines
249 B
C

extern void foo_in_so(void);
extern void unresolved_detected_at_runtime_not_at_linktime (void);
void call_unresolved(void)
{
unresolved_detected_at_runtime_not_at_linktime();
}
int main(int argc, char *argv[])
{
foo_in_so();
return 0;
}