On Wed, Oct 13, 2004 at 11:18:46PM -0700, Jeff Clites wrote: > typedef struct Parrot_Interp *Parrot_Interp; > > I'm not surprised that chokes a C++ compiler, but I don't know why a C > compiler tolerates it either. Not sure why this is necessary--I wonder
Because structs and types are different namespaces in C. (But the same in C++) Not all valid C programs are valid C++ Nicholas Clark
