Update year range in copyright notice of binutils files
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfweak / main.c
... / ...
CommitLineData
1#include <stdio.h>
2
3#pragma weak foo
4
5extern void foo ();
6extern void foobar ();
7
8void
9foo ()
10{
11 printf ("weak foo\n");
12}
13
14int
15main ()
16{
17 foobar ();
18 return 0;
19}
This page took 0.032645 seconds and 4 git commands to generate.