corrected fmacro rescanning
This commit is contained in:
parent
2214ea4017
commit
141bc9e49a
2 changed files with 18 additions and 5 deletions
16
05/main.c
16
05/main.c
|
@ -1,4 +1,16 @@
|
|||
#define TEST(x,y,z) x##y#z
|
||||
TEST(22,4594,hello there folks)
|
||||
#define STRINGIFY2(x) #x
|
||||
#define STRINGIFY(x) STRINGIFY2(x)
|
||||
#define X 22
|
||||
STRINGIFY(X)
|
||||
|
||||
|
||||
#define E 5
|
||||
#define D E
|
||||
#define C D
|
||||
#define B C
|
||||
#define A B
|
||||
|
||||
int x = E;
|
||||
|
||||
main(void) {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue