当我在 vc6 中使用 bison 和 flex 时,出现以下错误
lex.yy.c(395):错误 C2146:语法错误:缺少 ';' 在标识符 'YY_PROTO' lex.yy.c(395) 之前:致命错误 C1004:发现意外的文件结尾
这是什么原因?请帮忙。
复制自评论:
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap YY_PROTO(( void ));
#else
extern int yywrap YY_PROTO(( void ));
#endif
#endif