On Mon, 17 Nov 2003, Andres Kroonmaa wrote: > gcc (3.3.1 and 3.3.2) produce error whenever there is variable > definition with all uppercase: > > protos.h > -SQUIDCEXTERN void fwdServersFree(FwdServer ** FS); > +SQUIDCEXTERN void fwdServersFree(FwdServer ** fs);
Most likely there is a #define FS in some include file somewhere in your system... gcc -E will show what the above looks like to the C++ compiler after preprocessor expansions.. Regards Henrik
