summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-elfweak/bar.c
blob: 631751884b663ebfa68f541dc594213a429bfe12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

extern void foo ();
extern void foobar ();

void
foo ()
{
  printf ("strong foo\n");
}

void
foobar ()
{
  foo ();
}