PaulS:
No, but you can use 2 #define statements, to assign the second name the value of the first name.
An alternative (the #if is optional)...
#define NAME1 VALUE1
#if ! defined( NAME2 )
#define NAME2 NAME1
#endif
PaulS:
No, but you can use 2 #define statements, to assign the second name the value of the first name.
An alternative (the #if is optional)...
#define NAME1 VALUE1
#if ! defined( NAME2 )
#define NAME2 NAME1
#endif