We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
chibicc -E macro.c
will get
BAR() 1
however
gcc -E macro.c
BAR_I ()() 1 1 1
// macro.c #define EMPTY() #define DEFER(id) id EMPTY() #define EXPAND(...) __VA_ARGS__ #define BAR_I() BAR #define BAR() DEFER(BAR_I)()() 1 EXPAND(EXPAND(BAR()))