mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 12:29:32 +08:00
5 lines
114 B
C
5 lines
114 B
C
|
#define weak_alias(name, aliasname) \
|
||
|
extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
|
||
|
|
||
|
|