我有一个catalog.h文件
typedef struct node* list_node; struct node { operationdesc op_ptr; list_node next; };
和一个parser.h
#include "catalog.h" int parse_query(char *input,list_node operation_list);
两个标题都有#ifndef,#define,#endif.
编译器给了我这个错误:预期的声明说明符或parse_query行上’list_node’之前的’…’.
怎么了?
我试着把typedef放在parser.h中,没关系.当typedef在catalog.h中时,为什么会出现此错误?