| alias |
| Previous | Specifying Attributes of Functions | Next |
Syntax: alias ("target")
The alias attribute causes the declaration to be emitted as an
alias for another symbol, which must be specified. For instance,
void __f () { /* Do something. */; }
void f () __attribute__ ((weak, alias ("__f")));
declares f to be a weak alias for __f.