|
Last change
on this file since 478 was 477, checked in by bird, 22 years ago |
|
* empty log message *
|
-
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:
203 bytes
|
| Line | |
|---|
| 1 | /* Example on weak aliasing as found in some GCC manual:
|
|---|
| 2 | * http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | int __f ()
|
|---|
| 6 | {
|
|---|
| 7 | return 1;
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | int f () __attribute__ ((weak, alias ("__f")));
|
|---|
| 11 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.