source:
branches/libc-0.6/testcase/weak/weak2-3.c
Last change on this file was 308, checked in by , 22 years ago | |
---|---|
|
|
File size: 120 bytes |
Line | |
---|---|
1 | int bar3 = 3; |
2 | |
3 | int foo(void); |
4 | #pragma weak foo |
5 | |
6 | int foo(void) |
7 | { |
8 | return 3; |
9 | } |
10 | |
11 | int foo3(void) |
12 | { |
13 | return foo(); |
14 | } |
15 | |
16 |
Note:
See TracBrowser
for help on using the repository browser.