What is DEFAULT_CC in function declaration?
- by humoeba
I'm relatively new to C, and am curious what this syntax means in a function declaration:
int DEFAULT_CC foo(void)
where DEFAULT_CC is probably defined somewhere else as:
#define DEFAULT_CC "cc"
Is this a direction to use a certain compiler or something?