I have this struct type definition:
typedef struct {
char *key;
long canTag;
long canSet;
long allowMultiple;
confType *next;
} confType;
When compiling, gcc throws this error:
conf.c:6: error: expected specifier-qualifier-list before ‘confType’
What does this mean? It doesn't seem related to other questions with this error.