Re: meaning of typedef ...and something more

2007-01-16 Thread Ian Lance Taylor
"Laura Tardivo" <[EMAIL PROTECTED]> writes: > Hi, my question is about the meanig of qualifiers in combination with > typedefs. For example: > > typedef int function1(); > typedef int function2(); > ... > typedef function1 transition1; > typedef function2 transition2; > ... > int Def_Fun( volati

Re: meaning of typedef ...and something more

2007-01-16 Thread Joe Buck
On Tue, Jan 16, 2007 at 10:54:33PM -0300, Laura Tardivo wrote: > > Hi, my question is about the meanig of qualifiers in combination with > typedefs. For example: Laura, That is a C language question, and is not gcc-specific. The gcc list is for the compiler developers to communicate, and even

meaning of typedef ...and something more

2007-01-16 Thread Laura Tardivo
Hi, my question is about the meanig of qualifiers in combination with typedefs. For example: typedef int function1(); typedef int function2(); ... typedef function1 transition1; typedef function2 transition2; ... int Def_Fun( volatile transition1); int Def_Fun( volatile transition2 const); Spec