Hello, another one: I have another problem. I have a next define:
#define CONSTRUCTOR(ret, name, params) /*@out@*/ret name params
I use this define:
CONSTRUCTOR( struct person_t, create_person, (void))
{
....
}
This code produce a parse error. Why?
Thanks..
