GCC structure compilation error

Eljay Love-Jensen eljay@adobe.com
Fri Mar 26 12:44:00 GMT 2004


Hi Aniket,

Errors like that may mean that you have a typo in your structure.

For instance:

typedef struct Foo
{
	int a;
} FOO;

typedef struct Bar
{
	int b;
	FOOO c; // <-- typo
} BAR;

Check your header file for spelling errors.  For instance, "CALENDER" for 
"CALENDAR".

HTH,
--Eljay



More information about the Gcc-help mailing list