1#include <isl/space.h>
2
3#define xCAT(A,B) A ## B
4#define CAT(A,B) xCAT(A,B)
5#undef EL
6#define EL CAT(isl_,BASE)
7#define xMULTI(BASE) isl_multi_ ## BASE
8#define MULTI(BASE) xMULTI(BASE)
9
10struct MULTI(BASE) {
11	int ref;
12	isl_space *space;
13
14	int n;
15	EL *p[1];
16};
17
18__isl_give MULTI(BASE) *CAT(MULTI(BASE),_alloc)(__isl_take isl_space *space);
19