1 #ifndef ISL_ID_TYPE_H
2 #define ISL_ID_TYPE_H
3 
4 #include <isl/list.h>
5 
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
9 
10 struct isl_id;
11 typedef struct isl_id isl_id;
12 
13 ISL_DECLARE_LIST_TYPE(id)
14 
15 #if defined(__cplusplus)
16 }
17 #endif
18 
19 #endif
20