xref: /netbsd-src/external/mit/isl/dist/set_list_from_map_list_inl.c (revision 5971e316fdea024efff6be8f03536623db06833e)
1 #include <isl/map_type.h>
2 
3 /* Return the set list that was treated as the map list "list".
4  */
set_list_from_map_list(__isl_take isl_map_list * list)5 static __isl_give isl_set_list *set_list_from_map_list(
6 	__isl_take isl_map_list *list)
7 {
8 	return (isl_set_list *) list;
9 }
10