What is DEFAULT_CC in function declaration?
Posted
by humoeba
on Stack Overflow
See other posts from Stack Overflow
or by humoeba
Published on 2010-06-15T06:42:10Z
Indexed on
2010/06/15
6:52 UTC
Read the original article
Hit count: 170
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?
© Stack Overflow or respective owner