mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
11 lines
280 B
C
11 lines
280 B
C
|
#define xCAT(A,B) A ## B
|
||
|
#define CAT(A,B) xCAT(A,B)
|
||
|
#undef EL
|
||
|
#define EL CAT(isl_,BASE)
|
||
|
#define xFN(TYPE,NAME) TYPE ## _ ## NAME
|
||
|
#define FN(TYPE,NAME) xFN(TYPE,NAME)
|
||
|
#define xMULTI(BASE) isl_multi_ ## BASE
|
||
|
#define MULTI(BASE) xMULTI(BASE)
|
||
|
#undef DOM
|
||
|
#define DOM CAT(isl_,DOMBASE)
|