2001-09-14 Eric Christopher <echristo@redhat.com>
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfweak / main.c
CommitLineData
16a57284
L
1#include <stdio.h>
2
3#pragma weak foo
4
5extern void foo ();
6
7void
8foo ()
9{
10 printf ("weak foo\n");
11}
12
13int
14main ()
15{
16 foo ();
17 return 0;
18}
This page took 0.022519 seconds and 4 git commands to generate.