Last change
on this file since 3060 was 307, checked in by bird, 22 years ago |
Fixing, confirmed on linux.
|
-
Property cvs2svn:cvs-rev
set to
1.2
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
250 bytes
|
Line | |
---|
1 | /* weak external symbol with unresolvable default. */
|
---|
2 | int bar6 = 6;
|
---|
3 |
|
---|
4 | extern int weakexternal6(void);
|
---|
5 | #pragma weak weakexternal6 = weakexternaldefault6
|
---|
6 |
|
---|
7 | int weakexternaldefault6(void)
|
---|
8 | {
|
---|
9 | return 12;
|
---|
10 | }
|
---|
11 |
|
---|
12 | int foo6(void)
|
---|
13 | {
|
---|
14 | return weakexternal6();
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.