We should support simple macro definitions and usage. Say, this should be valid:
#define foo main
#ifdef foo
int foo() { return 0; }
#endif
Note that there's no fancy stuff (like #if defined(), or any non-trivial preprocessor expressions) in this issue, yet.
We should support simple macro definitions and usage. Say, this should be valid:
Note that there's no fancy stuff (like
#if defined(), or any non-trivial preprocessor expressions) in this issue, yet.