标签: gcc g++ cygwin
#ifndef BLAH #define <stdio.h> #endif int main(){ return 0; }
使用#ifdef似乎工作正常。 我得到的错误是“宏名称必须是标识符”。
#ifndef需要特定的东西吗?
答案 0 :(得分:0)
#define <stdio.h> /* ^ \ --- this should be #include */
Example