/* It would be nice if the code generated by asdl_c.py was completely independent of Python, but it is a goal the requires too much work at this stage. So, for example, I'll represent identifiers as interned Python strings. */
/* XXX A sequence should be typed so that its use can be typechecked. */
typedef struct { int size; void *elements[1]; } asdl_seq;
typedef struct { int size; int elements[1]; } asdl_int_seq;