Do not use 'alias' as a macro parameter name for __strong_reference(),

since the word 'alias' appears in the macro body.

Approved by:	jkh
This commit is contained in:
Jason Evans 2000-01-30 07:54:05 +00:00
parent 4e60d653ce
commit 268b25e18a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56904

View File

@ -153,8 +153,8 @@
#endif
#ifdef __GNUC__
#define __strong_reference(sym,alias) \
extern __typeof (sym) alias __attribute__ ((alias (#sym)));
#define __strong_reference(sym,aliassym) \
extern __typeof (sym) aliassym __attribute__ ((alias (#sym)));
#ifdef __ELF__
#ifdef __STDC__
#define __weak_reference(sym,alias) \