de https://github.com/lattera/glibc/blob/master/include/libc-symbols.h
/* Define ALIASNAME as a weak alias for NAME.
If weak aliases are not available, this defines a strong alias. */
# define weak_alias(name, aliasname) _weak_alias (name, aliasname)
# define _weak_alias(name, aliasname) \
extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
À propos du symbole faible :
https://en.wikipedia.org/wiki/Weak_symbol
C'est une macro qui fait ce qui suit :
Il déclare une fonction faible, si vous n'avez pas fourni de nom de symbole fort pour cette fonction, il appellera la fonction à laquelle vous l'avez associé. par exemple
int _foo(){ return 1;}
//And weak alias
int __attribute__((weak, alias("_foo"))) foo();
Donc, si vous n'avez pas fourni d'implémentation réelle pour foo, il utilisera essentiellement _foo et renverra 1.