Re: Query about " warning parameter names (without types) in function
by prix prad <maalage@[EMAIL PROTECTED]
>
Mar 24, 2008 at 09:02 PM
Hi Andrey,
Thanks for the lucid explanation.
Hi Jack,
The following is the .c file:
********************************************************************
#define DECL _decl
#define ARR(name) arr ## name
#define EXPAND(array) int M_ ## array
main() {
EXPAND(ARR(DECL));
return 1;
}
********************************************************************
The following is the 'gcc -E' output:
********************************************************************
main() {
int M_ARR(_decl);
return 1;
}
********************************************************************
Thanks,
/prix