You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Test file for creating multiple alias for a symbol
|
|
|
|
void __foo(void);
|
|
void foo(void) __attribute__((weak, alias("__foo")));
|
|
void foo__(void) __attribute__((weak, alias("__foo")));
|
|
void __foo__(void) __attribute__((alias("__foo")));
|
|
|
|
void __foo(void)
|
|
{
|
|
|
|
}
|