On Wed, 28 Jun 2006, Joel E. Denny wrote:
> %semantic-type {
> #include "type1.h"
> #include "type2.h"
> union {
> int field1;
> int field2;
> };
> }
I'll try again:
%semantic-type {
#include "type1.h"
#include "type2.h"
union {
type1 field1;
type2 field2;
};
}
Joel
