mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-24 10:42:21 +00:00
12 lines
258 B
C
12 lines
258 B
C
|
// 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)
|
||
|
{
|
||
|
|
||
|
}
|