I've inherited some code where the coder placed dollar signs in
his preprocessor macros. What is the significance of the
dollar signs ($) ?
Example:
#define ALLOCATE(task,p ointer) \
{ \
long task$; \
if (task == FOO) { \
task$ = ZERO); \
} else task$ = task; \
switch (task$) {
etc.
his preprocessor macros. What is the significance of the
dollar signs ($) ?
Example:
#define ALLOCATE(task,p ointer) \
{ \
long task$; \
if (task == FOO) { \
task$ = ZERO); \
} else task$ = task; \
switch (task$) {
etc.
Comment