Is there a way to define a macro that contains a #include directive in its body?
#include
If I just put the \"#include\", it gives the error
Contagious is right -- if you're doing:
myFile.c:
#include "standardAppDefs.h" #myStandardIncludeMacro
standardAppDefs.h:
#define myStandardIncludeMacro #include
Why not just say:
#include "standardAppDefs.h"
And forget the macros?