8
votes
2answers
328 views
What is the point of saying “#define FOO FOO” in C?
I came across some C code where the author uses the following idiom all over the place:
typedef __int32 FOO_INT32;
#define FOO_INT32 FOO_INT32
What is the point of …
