Welcome to mirror list, hosted at ThFree Co, Russian Federation.

weakalias.h « i386 « machine « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 539ee4ae4154bca807b19b3d3091c4579ddc6d9b (plain)
1
2
3
4
#define weak_alias(name, aliasname) \
  extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));