Im making a linked list using a typedef'ed struct, but the compiler is telling my that my new type is undefined.
typedef struct valholder
{
char* id;
union
{
int ival;
float fval;
char* cval;
};
valholder* next;
};
How do I fix this?